我无法将var与字符串进行比较

时间:2019-06-08 01:47:16

标签: shell if-statement input

因此,我需要将输入与所需的字符串结果进行比较。当我输入输入内容时,它将继续进行比较并显示错误消息。输入必须为“是”。它显示在比较的行[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

它显示在比较行中[是:未找到 “是”是我输入的答案

0 个答案:

没有答案