章节10课时74Bash变量-位置变量

来源:互联网 发布:mac 试色 编辑:程序博客网 时间:2024/06/11 10:54

[root@user-577022 home]# cat first.sh
#!/bin/bash
echo $0
echo $1
echo $2


[root@user-577022 home]# ./first.sh 11 22 33
./first.sh
11
22





原创粉丝点击