第一个 Bash 文件中的错误

Errors in First Bash File

我正在编写我的第一个 bash 脚本,但我不断遇到错误,我不确定哪里出错了。下面是我要执行的脚本:

#!/bin/ksh
#Script Name: printnum.sh
# Verify the number of arguments and exit if not equal to 1`enter code here`
$mynum = "5"
echo $mynum
if [$mynum -gt 1]
then
    printf "error: program must be executed with 1 argument\n"
    printf "usage: [=11=] value (where value >= 1)\n"
    exit 1
fi
# Verify argument is a positive number
if [$mynum -lt 1]
then
    printf "error: argument must be a positive number\n"
    printf "usage: [=11=] value (where value >= 1)\n"
fi
# Store command line argument in variable i
$mynum="$i"
# Loop and print $i while decrementing variable to =1 (with comma)
while [$i -gt 1]
do
    printf "$i, "
done

以下是我遇到的错误:

./printnum.sh[3]: =: not found [No such file or directory]

./printnum.sh[5]: [: ']' missing
./printnum.sh[11]: [: ']' missing
./printnum.sh[16]: =: not found [No such file or directory]`enter code here`
./printnum.sh[17]: [: ']' missing
/export/home/hanko01/HOME/itec400/homework>

如有任何帮助,我们将不胜感激!

先说几点:

  1. 如果尝试使用 bash 脚本,shebang 应该是 #!/bin/bash。 (如果已经使用 bash,则不需要,请在终端中打印 $SHELL 检查)
  2. if(以及 while)条件应适当间隔。例如。 if/space/[/space/condition/space/]
  3. 如评论中所述,在赋值时不要使用 $。
  4. $# 表示命令行参数的数量。

其余的你可以通过更正的代码理解:

#!/bin/bash
#Script Name: printnum.sh
# Verify the number of arguments and exit if not equal to 1 `enter code here`
if [ $# -ne 1 ]
then
        printf "error: program must be executed with 1 argument\n"
        printf "usage: [=10=] value (where value >= 1)\n"
        exit 1
fi
# Verify argument is a positive number
if [  -lt 1 ]
then
        printf "error: argument must be a positive number\n"
        printf "usage: [=10=] value (where value >= 1)\n"
fi
# Store command line argument in variable i
i=
# Loop and print $i while decrementing variable to =1 (with comma)
while [ $i -gt 1 ]
do
        printf "$i, "
        i=$((i-1))
done