gpt4 book ai didi

linux - 第一个 Bash 文件中的错误

转载 作者:太空宇宙 更新时间:2023-11-04 04:43:13 24 4
gpt4 key购买 nike

我正在编写我的第一个 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: $0 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: $0 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)条件应适当间隔。例如。如果/空间/[/空间/条件/空间/]
  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: $0 value (where value >= 1)\n"
exit 1
fi
# Verify argument is a positive number
if [ $1 -lt 1 ]
then
printf "error: argument must be a positive number\n"
printf "usage: $0 value (where value >= 1)\n"
fi
# Store command line argument in variable i
i=$1
# Loop and print $i while decrementing variable to =1 (with comma)
while [ $i -gt 1 ]
do
printf "$i, "
i=$((i-1))
done

关于linux - 第一个 Bash 文件中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54585137/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com