我是否能够首先使用wget
或类似的内容首先比较两个不同的网址/网站而不先下载文件。我尝试了以下内容,但收到了以下错误。
[root@desktop ~]# diff http://www.example.net/index.php http://www.example.com/index.php
diff: http://www.example.net/index.php: No such file or directory
diff: http://www.example.com/index.php: No such file or directory
[root@desktop ~]#
答案 0 :(得分:13)
当然你可以使用curl
,虽然有点奇怪:
diff <(curl url1) <(curl url2)
在你的情况下:
diff <(curl http://www.example.net/index.php) <(curl http://www.example.com/index.php)
请注意,您可以使用curl -s
进行更清晰的差异执行。