某平台价值19860元的编程课程资料免费领取【点我领取】
#--------------- #!/bin/sh if [ $# != 2 ] then echo "Usage: test.sh input1 input2" else echo "Your input is:" $1 $2 fi #-------------- 这里$#是参数个数, $1 $2 就是参数啦