source command not found in sh shell解决办法
Posted Davygeek
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了source command not found in sh shell解决办法相关的知识,希望对你有一定的参考价值。
在Ubuntu系统中执行脚本的时候突然出现错误“source command not found in sh shell”
这个其实在Ubuntu 当中 执行脚本默认的使用的是dash,而非bash
通过命令
#ls -l `which sh` # /bin/sh -> dash
我们发现, 脚本中默认使用的sh其实对应的是dash, 而不是bash。 为了解决这个错误我们就需要把这个对应关系修改下, 让sh对应到bash
执行以下命令, 在弹出的框里面选择No即可把sh对应的链接修改成bash
#sudo dpkg-reconfigure dash
//若下图所示, 选择否就可以修改对应的关系, 修改完成之后再执行ls -l `which sh`就可以看到, 对应关系已经修改过来了, 可以正常的执行脚本了
以上是关于source command not found in sh shell解决办法的主要内容,如果未能解决你的问题,请参考以下文章
Linux执行source /etc/profile报错“:command not found”
Ubuntu解决sudo: source: command not found错误
Mac 终端命令不生效:-bash: source: command not found
source command not found in sh shell解决办法
zsh: command not found: pip 解决方法
Linux 下执行 source /etc/profile后提示 -bash: rt: command not found 如何解决?