shellscript 找不到文件

shellscript 找不到文件

我的 shellscript 无法找到文件。文本文件存在,所以我不明白问题是什么。

#!/bin/ksh
goodmain $1 | sed -e '1,/mmxxaa/d'

$ ls -l
total 1364
-rwxr-xr-x. 1 s student  94563 Apr 23 23:55 a.out
-rwxrwxrwx. 1 s student     19 Apr 28 17:13 boo
-rw-r--r--. 1 s student     89 Apr 24 00:58 cookies
-rw-r--r--. 1 s student   1622 Dec  6 23:49 doc
-rw-r--r--. 1 s student    148 Apr 23 16:14 textfile
-rw-r--r--. 1 s student 597061 Apr 23 23:56 fn
-rwxr-xr-x. 1 s student  94563 Apr 28 16:56 goodmain
-rw-r--r--. 1 s student 427993 Apr 23 23:47 main.c
-rw-r--r--. 1 s student 145256 Apr 24 00:40 main.o
-rw-r--r--. 1 s student     72 Apr 28 16:53 makefile
-rwxrwxrwx. 1 s student     46 Apr 28 17:24 p4
$ ./p4 textfile
./p4: line 2: goodmain: not found

答案1

由于当前路径不在小路变量,您必须完全指定文件的位置:如果您的文件与脚本位于同一位置,则可以添加“./”,或者您可以提供完整路径:

./goodmain

或者:

/full/path/goodmain

相关内容