因此,我需要将输入与所需的字符串结果进行比较。当我输入输入内容时,它将继续进行比较并显示错误消息。输入必须为“是”。它显示在比较的行[TheInput:找不到
我尝试键入各种输入“是”,“否”,数字,但是错误始终相同。
read -p 'do you want to move these files to another dir?' answer
if [$answer -eq "yes"]; then
find . -type f -mtime +0 -size 1k -user markolosole -exec mv -t
dump/ {} +;
fi
它显示在比较行中[是:未找到 “是”是我输入的答案