Ubuntu中使用source报错处理办法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu中使用source报错处理办法相关的知识,希望对你有一定的参考价值。
最近一段时间在使用Bash on Ubuntu on Windows做shell脚本调试时发现在脚本中使用source时会报错,上网查了下才了解到原来是在Ubuntu中使用的并不是bash,而是使用优化过的dash,而在dash中是没有source,而在bash中才有source,这就有点麻烦了,平时在写脚本时有时会调用系统的function和一些自定义的function,没有source确实有点不太方便,而在此时可以在使用dpkg-reconfigure来修改配置dash,在平时可以用以下方法来验证看下自己的系统中使用的shell环境:
[email protected]:~# ls -l $(which sh) lrwxrwxrwx 1 root root 4 9月 9 22:09 /bin/sh -> dash
修改下:
[email protected]:~# dpkg-reconfigure dash
之后选择否,此时再看系统中使用的shell环境就改成bash
[email protected]:~# ls -l $(which sh) lrwxrwxrwx 1 root root 4 9月 9 22:09 /bin/sh -> bash
在此时就可以使用source
本文出自 “Jim的技术随笔” 博客,请务必保留此出处http://jim123.blog.51cto.com/4763600/1964010
以上是关于Ubuntu中使用source报错处理办法的主要内容,如果未能解决你的问题,请参考以下文章
svn报错cleanup failed–previous operation has not finished; run cleanup if it was interrupted的解决办法(代码片段