我是编程新手,这是我的第一个bash脚本。
我想编写一个脚本,它将获取10个命令行参数并将其打印
答案 0 :(得分:4)
#!/bin/bash
echo $1 $2 $3 $4 $5 $6 $7 $8 $9 ${10}
答案 1 :(得分:0)
这应该有用,还是我错过了什么?
-mbp:~$ more test.sh
first=$1
second=$2
echo $first is better than $second
-mbp:~$ sh test.sh r matlab
r is better than matlab