首先编写一个shell脚本

vi test.sh

加入以下内容

cd /usr/local
ls -l

增加执行权限

 chmod +x test.sh

使用source命令执行(./test.sh不会切换目录,只会显示)

source test.sh


Logo

更多推荐