gpt4 book ai didi

linux - Bash 编程 — 如何将字符串添加到文本文件中

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

touch log.txt
while [ 1 ]; do
echo "insert data: "
read data
if [ $data = "finish" ]; then
break
fi
echo "$data" >> log.txt

当我运行该程序并在“hello im martin”之类的输入中输入一个词时,它给我一个错误提示,指出意外的运算符。如何解决这个问题?

最佳答案

在表示 while 循环结束的 echo 语句后,您缺少 done 关键字。

此外,您应该将第 5 行的 $data 放在引号中,否则 hello im martin 输入将导致该行被解释为:

if [ hello im martin = "finish" ]; then

关于linux - Bash 编程 — 如何将字符串添加到文本文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25946098/

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