当前位置: 技术问答>linux和unix
怎样写一个带参数的 shell脚本啊?
来源: 互联网 发布时间:2015-11-11
本文导语: 比如我的脚本是test.sh 运行时可以带参数:test.sh ? ? ?.... | 给个例子就清楚了。test.sh: #--------------- #!/bin/sh if [ $# != 2 ] then echo "Usage: test.sh input1 input2" else echo "Your input is:"...
比如我的脚本是test.sh
运行时可以带参数:test.sh ? ? ?....
运行时可以带参数:test.sh ? ? ?....
|
给个例子就清楚了。test.sh:
#---------------
#!/bin/sh
if [ $# != 2 ]
then
echo "Usage: test.sh input1 input2"
else
echo "Your input is:" $1 $2
fi
#--------------
这里$#是参数个数, $1 $2 就是参数啦
#---------------
#!/bin/sh
if [ $# != 2 ]
then
echo "Usage: test.sh input1 input2"
else
echo "Your input is:" $1 $2
fi
#--------------
这里$#是参数个数, $1 $2 就是参数啦