在linux系统下写shell脚本时,发现把cd命令写在里面无法正确跳转,还是在当前目录下,其实文件已经跳转,不过subshell退出的时候又回到当前目录了,解决方法:
source yourshellname
其中,yourshellname就是你的shell脚本的文件名了。要确保yourshellname已经是可执行文件(chmod +x yourshellname).
参考:
本文永久更新地址://m.ajphoenix.com/linux/29700.html