- 创建一个文件tttt
- 文件内容为 echo "hello"
执行该文件方式
chmod u+x tttt
./tttt
bash tttt
或
/bin/bash tttt
PATH="$PATH:
pwd
"
tttt
替换ls命令
- 创建一个文件ls
- 文件内容为 echo "hello"
PATH="
pwd
:$PATH"
alias ls="ls;/bin/ls"
ls
运行结果为
hello
Desktop examples.desktop Pictures Templates tttt
...
网友评论