为什么我的bash版本不接受函数关键字?

时间:2014-01-19 00:33:19

标签: bash syntax

我的bash版本是:

bash --version
GNU bash, version 4.2.45(1)-release (x86_64-pc-linux-gnu)

如果我做原型功能

#!/bin/bash
function f()
{
echo "hello" $1
 }
 f "world"

我得到Syntax error: "(" unexpected

为什么?

shopt的输出是:

autocd          off
cdable_vars     off
cdspell         off
checkhash       off
checkjobs       off
checkwinsize    on
cmdhist         on
compat31        off
compat32        off
compat40        off
compat41        off
direxpand       off
dirspell        off
dotglob         off
execfail        off
expand_aliases  on
extdebug        off
extglob         on
extquote        on
failglob        off
force_fignore   on
globstar        off
gnu_errfmt      off
histappend      on
histreedit      off
histverify      off
hostcomplete    off
huponexit       off
interactive_comments    on
lastpipe        off
lithist         off
login_shell     off
mailwarn        off
no_empty_cmd_completion off
nocaseglob      off
nocasematch     off
nullglob        off
progcomp        on
promptvars      on
restricted_shell    off
shift_verbose   off
sourcepath      on
xpg_echo        off

1 个答案:

答案 0 :(得分:5)

您的bash 版本接受function关键字。问题是您没有在bash下运行脚本。

如果我使用dash foo.bashsh foo.bash运行脚本,我会收到同样的错误(/bin/sh是我系统上dash的符号链接)。

dash无法识别function语法。

#!/bin/bash行导致您的脚本被bash解释 - 但只有在您直接调用它时才会解释,而不是将其提供给其他shell。

而不是调用shell并将脚本名称作为参数传递给它:

sh foo.bash

直接调用您的脚本:

foo.bash (or ./foo.bash)