ubuntu12.04中shell脚本无法使用source的原因及解决方法

前端之家收集整理的这篇文章主要介绍了ubuntu12.04中shell脚本无法使用source的原因及解决方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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

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

改回方法

命令行执行:sudo dpkg-reconfigure dash

在界面中选择no

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

修改成功,source可以用了~

也可以在shell脚本中的头修改为:#!/bin/bash

原文链接:https://www.f2er.com/ubuntu/351678.html

猜你在找的Ubuntu相关文章