比较 shell 脚本中的文件大小
我正在尝试比较 shell 脚本中两个文件的大小,但收到 test: 32: 8: Unexpected Operator 错误。
I=`wc -c $i | cut -d' ' -f1`
J=`wc -c $j | cut -d' ' -f1`
if test $I == $J
then
echo $i $j >> $1.pares
fi
我使用 echo 测试 $I 和 $J 中的值,这些值是正确的,但我无法比较它们......
I'm trying to compare the size of two files in shell script but I'm getting a test: 32: 8: unexpected operator error.
I=`wc -c $i | cut -d' ' -f1`
J=`wc -c $j | cut -d' ' -f1`
if test $I == $J
then
echo $i $j >> $1.pares
fi
I test the values in $I and $J using echo and the values are correct but I cant compare them...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这适用于 bash
this works on bash
尝试使用方括号 (
[]
) 和-eq
,如下所示:Try using square braces (
[]
) and-eq
like so:尝试
始终引用变量,因为文件名可能包含空格。
尽管 BASH 对变量名不区分大小写,但对变量使用不同的(且长于一个字符的)名称会更好、更安全。
Try
Always quote variables, because you can have a file name containing a space.
Despite BASH is case insensitive with variable names, it's better and safer to use different (and longer than one char) name for variables.
像这样的事情可能会起作用......
拥抱!
Something like this could work....
Hugs!