繁体   English   中英

OSX中的bash语法错误

[英]bash syntax error in OSX

在Linux上编写和测试的以下bash脚本在被调用时甚至无法在OS X上启动。

#!/bin/bash
#
#   Some comments
#
#
function usage {
    echo ""
    echo "Usage: thisscript <SOURCE_DIRECTORY> <TARGET_DIRECTORY>"
    echo ""
    echo "<SOURCE_DIRECTORY>    the directory where the this "
    echo "              directory resides (default is /usr/dis)"
    echo ""
    echo "<TARGET_DIRECTORY>    the destination directory"
    echo ""
}

function notDarwin {
    mv -f $CUR_DIR/* $NEW_DIR/
    ln -sf "$NEW_DIR/ee/sc/scrp" "/usr/bin/scrp"
    ln -sf "$NEW_DIR/ee/etc/conffile.conf" "/etc/conffile.conf"
    exit 0
}

function isDarwin {
    mv -f $CUR_DIR/* $NEW_DIR/
    ln -sf "$NEW_DIR/ee/sc/scrp" "/usr/local/bin/scrp"
    cp "$NEW_DIR/ee/etc/conffile.conf" "/etc/conffile.conf"
    exit 0
}

#
#   =============================================
#   ================== MAIN =====================
#   =============================================
#

CUR_DIR=${1%/}
NEW_DIR=${2%/}

if [ ! -d "$CUR_DIR" ]; then
    echo ""
    echo "blah blah"
    usage
    exit 1
fi

if [ ! -d "$NEW_DIR" ]; then
    echo ""
    echo "The target directory supplied does not exist. Creating target directory $NEW_DIR"
    mkdir "$NEW_DIR"
    if [ $? -ne 0 ]; then
        echo "Could not create target directory. Exiting..."
        exit 1
    else
        echo "Directory $NEW_DIR created"
    fi
    echo ""
fi

UNAME=$(uname)
if [ $UNAME == "Darwin" ]; then
    isDarwin
else
    notDarwin
fi

在使用bash 3.2的macOS上以sudo bash script.sh "arg1" "arg2"运行时,它将引发以下语法错误

'script.sh: line 7: syntax error near unexpected token `{
'script.sh: line 7: `function usage {

我是OS X的新手,也许我缺少一个陷阱。 该脚本在Linux上运行良好...

谢谢

Linux和现代OS X期望行以LF(换行)字符结尾。 如果您的行以CR + LF结尾,那么您将遇到问题。


其他一些一般性指针:

function语法是非标准的。 您应该使用所有POSIX兼容外壳程序都支持的标准语法:

更改:

function usage {

至:

usage() {

我怀疑一切都会好起来的。

顺便说一句,您应该引用所有参数扩展(您错过了几个)。 使用小写的变量名也被认为是一种好习惯,因为外壳使用大写的变量名,并且冒着与它们冲突的风险。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM