gpt4 book ai didi

unix - 我如何区分网络上的两个文件

转载 作者:行者123 更新时间:2023-12-03 22:51:15 25 4
gpt4 key购买 nike

我想查看2个文件的区别,这些区别不在本地文件系统中,而在Web上。因此,我认为是否必须使用diffcurl和某种管道。

就像是

curl http://to.my/file/one.js http://to.my/file.two.js | diff 


但这不起作用。

最佳答案

UNIX工具diff可以比较两个文件。如果使用<()表达式,则可以在间接指令中比较命令的输出:

diff <(curl file1) <(curl file2)


因此,就您而言,您可以说:

diff <(curl -s http://to.my/file/one.js) <(curl -s http://to.my/file.two.js)

关于unix - 我如何区分网络上的两个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16361691/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com