【linux】Ubuntu中shell脚本无法使用source的原因及解决方法

问题现象: shell脚本中source aaa.sh时提示 source: not found

原因: ls -l `which sh` 提示/bin/sh -> dash

【linux】Ubuntu中shell脚本无法使用source的原因及解决方法

这说明是用dash来进行解析的。

改回方法:

命令行执行:sudo dpkg-reconfigure dash

【linux】Ubuntu中shell脚本无法使用source的原因及解决方法

在界面中选择no

【linux】Ubuntu中shell脚本无法使用source的原因及解决方法

再ls -l `which sh` 提示/bin/sh -> bash

【linux】Ubuntu中shell脚本无法使用source的原因及解决方法

修改成功,source可以用了~

上一篇:深入理解java String 及intern


下一篇:[LeetCode] Logger Rate Limiter 记录速率限制器