001、
[root@PC1 test1]# ls ## 准备两个测试文件 a.sh b.sh [root@PC1 test1]# cat a.sh ## a文件 #!/bin/bash echo $* [root@PC1 test1]# cat b.sh ## b文件 #!/bin/bash set one two three echo $* [root@PC1 test1]# bash a.sh [root@PC1 test1]# bash a.sh one two three ## 执行a文件,需要位置参数 one two three [root@PC1 test1]# bash b.sh ## b文件不需要,因为使用set指定了参数 one two three
。
标签:test1,shell,##,PC1,sh,set,Linux,root,bash From: https://www.cnblogs.com/liujiaxin2018/p/17977749