[[email protected]_48_191_centos 456]# vim 2.sh
#!/bin/bash #加入这行,表示解释器是bash,不加也可以,我是centos的,默认是bash
echo $0
echo $1
[[email protected]_48_191_centos 456]# ./2.sh 1
./2.sh
1
[[email protected]_48_191_centos 456]# ./2.sh 2
./2.sh
2
[[email protected]_48_191_centos 456]# sh 2.sh 2
2.sh
2
./执行脚本的时候,$0就是./执行脚本
而使用sh 执行的时候,$0就是脚本名字
时间: 2024-10-21 17:49:11