Linux 使用shell脚本实现当前目录的切换
首先编写一个shell脚本vi test.sh加入以下内容cd /usr/localls -l增加执行权限 chmod +x test.sh使用source命令执行(./test.sh不会切换目录,只会显示)source test.sh
·
首先编写一个shell脚本
vi test.sh
加入以下内容
cd /usr/local
ls -l
增加执行权限
chmod +x test.sh
使用source命令执行(./test.sh不会切换目录,只会显示)
source test.sh
更多推荐
已为社区贡献1条内容
所有评论(0)