前端之家收集整理的这篇文章主要介绍了
bash – 如果两个文件不同,Shellscript操作,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用以下命令将
文件导入到我的服务器:
scp zumodo@shold:/test/test/test/server.py /test/test/test/test.py~/;
如果新导入的文件test.py〜与已存在的test.py不同,我想重新启动服务器.使用shellscript怎么做?
if ! cmp test.py test.py~ >/dev/null 2>&1
then
# restart service
fi
打破这个:
> cmp test.py test.py〜返回true(0)如果test.py和test.py〜相同,否则为false(1).你可以看到这个人的cmp.>!反转的结果,所以if语句转换为“如果test.py和test.py〜不同”.>重定向> / dev / null 2>& 1将cmp的所有输出发送到位桶,因此您只需获得真/假比较结果,而不会在控制台上发出任何不需要的噪音.
原文链接:/bash/386253.html