当前位置: 技术问答>linux和unix
help me to write a shell script
来源: 互联网 发布时间:2015-12-28
本文导语: I need write a shell script to run my program(abc.c). gcc abc.c -o abc ./abc 34 my shell script(name=shell): !#bin/sh $1 ./abc $2 but when I use "./shell .sh 34", It doesnot work. why? Thank you | !#bin/sh ./abc $1 就OK...