shell怎么判断两个文件内容是否相同
答案:3 悬赏:60 手机版
解决时间 2021-02-11 09:03
- 提问者网友:贪了杯
- 2021-02-10 08:48
shell怎么判断两个文件内容是否相同
最佳答案
- 五星知识达人网友:愁杀梦里人
- 2021-02-10 10:16
#cat diff_two_file
#/bin/sbin
file1=/mnt/mmc/test/aa
file2=/mnt/mmc/test/bb
diff $file1 $file2 > /dev/null
if [ $0 == 0 ]; then
echo "Both file are same"
else
echo "Both file are different"
fi
$0 是上一执行命令的返回值。
diff 命令返回值为 0,说明两个文件相同, 否则两个文件不相同。
#/bin/sbin
file1=/mnt/mmc/test/aa
file2=/mnt/mmc/test/bb
diff $file1 $file2 > /dev/null
if [ $0 == 0 ]; then
echo "Both file are same"
else
echo "Both file are different"
fi
$0 是上一执行命令的返回值。
diff 命令返回值为 0,说明两个文件相同, 否则两个文件不相同。
全部回答
- 1楼网友:怙棘
- 2021-02-10 10:41
diff file1 file2
或者
md5sum file1 file2
- 2楼网友:拾荒鲤
- 2021-02-10 10:21
#!/bin/bash
diff file1 file2 > /dev/null
if [ $0 == 0 ]; then
echo "both file are same"
else
echo "both file are different"
fi
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯