在运行ksh脚本时,我收到以下错误
interpreter "/usr/bin/ksh" not found
在parentscript
我正在调用childscript
,如下所示
#!/usr/bin/ksh
scriptname="${0##*/}"
print "myname : $scriptname" 1>&2;
# Source the profile
. $HOME/.profile
Other commands
....
childscript -j$1234
childscript
文件与parentscript
存在于同一目录中。但我得到以下错误
interpreter "/usr/bin/ksh" not found
/home/usrten/bin/parentscript[397]: childscript: not found
她的397
是调用childscript的行。
childscript
文件具有所有权限(777)
which ksh
返回此输出/usr/bin/ksh
请帮忙。我是unix / ksh envoronment的新手。