linux-tutorial/codes/shell/示例脚本/输入和输出/读取程序名.sh

10 lines
253 B
Bash
Raw Normal View History

2019-05-10 11:17:57 +08:00
#!/bin/bash
# testing the $0 parameter
echo The command entered is $0
#当传给$0变量的真实字符串是整个脚本的路径是程序中就会使用整个路径而不仅仅是程序名
name=`basename $0`
echo The command entered is $name