gpt4 book ai didi

linux - 练习 shell 编程(初学者)

转载 作者:太空宇宙 更新时间:2023-11-04 04:58:05 26 4
gpt4 key购买 nike

我对这段代码有疑问:

#! /bin/sh

i=0
while [ $i -lt 5 ] ; do
echo $1
i=$((i + 1))
sleep 1
done

当我以./boucle_arg.sh 2运行脚本时,我收到以下错误:

./boucle_arg.sh: line 4: [: missing `]'

最佳答案

尝试将开头的 shebang 更改为:

#!/bin/bash

或者,为了更加便携(并非所有系统都在/bin/处有 bash),您可以使用这个 shebang 来代替:

#!/usr/bin/env bash

还有一件事:不要忘记通过运行以下命令使脚本可执行(请将脚本路径更改为您自己的脚本路径):

chmod +x /usr/local/bin/script1

关于linux - 练习 shell 编程(初学者),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40965363/

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