2

我正在处理一个文件处理项目,我正在尝试在 PuTTY 中运行一个名为 runProcessing.sh 的 shell 脚本。服务器使用 ksh。我的主管告诉我./ runProcessing.sh <param1> <param2>在执行脚本时使用,但每当我使用 ./ 时,它都会显示cannot executeor 或file not found. 每当我输入 justrunProcessing.sh时,它都会返回空指针异常,我现在一直在努力继续我的任务。

我了解 ./ 在运行脚本时的作用,但我不确定为什么在尝试使用它运行脚本时它不起作用。任何提示或建议?我是 Linux/UNIX 的新手。

这是我的脚本:

#!/bin/ksh
#
# Script to download processing files from the appropriate target
#
# $Id: runProcessing.sh 604 2013-01-14 21:56:35Z alex_rempel $
#

DIR=`dirname $0`
. $DIR/setEnvironment.sh
java $LDAPRUNMODE $JAVAOPT com.webproject.db.processing.FPJob  --logdir $CISLOGDIR --file [2] $* 
RET=$?

if [ $RET -gt 0 ]
then
    echo
    echo
    echo "------ runProcessing.sh Failed ------"
    echo
    echo
    exit $RET
4

2 回答 2

2

空指针异常来自您的 Java 程序,因此它们意味着该进程实际上已经启动。通常,它们并不表示您的 shell 脚本或其调用存在问题。

. something # this reads the file `something`, running each line as a command
            # in your current shell. (Actual behavior is a bit more sophisticated
            # than that, but it's close enough).

./something # this tries to run the file `something` in the current directory as
            # an executable. It doesn't need to be a shell script -- it can be
            # any kind of executable, and if it has a shebang line, that will be
            # honored to determine the interpreter or shell to use.

./ something  # <- this is simply invalid.

也就是说,您可以通过像这样启动脚本来准确记录脚本正在运行的命令:

ksh -x ./something

这将显示您的脚本运行的命令。如果错误是由错误启动 JVM 的脚本引起的,那么您可以确定预期调用和实际调用有何不同。

于 2013-07-02T18:50:29.303 回答
1

由于您在 ksh 环境中运行,因此您还有另一个使用 ./ 运算符的选项。

您可以通过将其作为参数传递给 ksh 来执行它,而不是使您的脚本成为可执行文件,如下所示:

ksh yourScript

在 Unix/Linux 中创建文件时,不会自动授予它执行权限。因此,或者,您可以使用以下命令修改脚本的权限chmod

chmod +x yourScript

然后,您应该能够执行您的脚本。

于 2013-07-02T20:21:35.717 回答