添加PATH变量的路径

时间:2017-07-27 17:46:56

标签: shell

我有一个位于/ home / myself / bin目录下的shell脚本。我通过添加行

将其路径添加到.profile中的PATH变量
export PATH=$PATH:/home/myself/bin

然后我通过 source~ / .profile 命令获取了我的.profile。现在,当我运行 sh myscript.sh 命令时,显示

sh: 0: Can't open myscript.sh

有谁能说我哪里出错?

1 个答案:

答案 0 :(得分:1)

$PATH告诉你的shell在哪里搜索可执行文件。在您的情况下,sh是可执行文件,myscript.sh只是一个参数。您需要首先制作myscript.sh可执行文件:

 chmod +x /home/myself/bin/myscript.sh

然后只需运行myscript.sh(不含sh)。