shell脚本中cd命令无效
程序员文章站
2022-05-03 09:36:42
对于一段包含cd 命令的shell脚本(test.sh): 运行: 脚本运行时无法在上级目录建立test文件 此时用 即可 ......
对于一段包含cd 命令的shell脚本(test.sh):
#!/bin/bash cd .. mkdir ./test
运行:
sh ./test.sh
脚本运行时无法在上级目录建立test文件
此时用
. ./test.sh
即可