我正在尝试编写一个 linux 脚本来搜索网页上的链接并从该链接下载文件...
网页是: http: //ocram.github.io/picons/downloads.html
我感兴趣的链接是:“hd.reflection-black.7z”
我这样做的原始方式是使用这些命令..
lynx -dump -listonly http://ocram.github.io/picons/downloads.html &> output1.txt
cat output1.txt | grep "17" &> output2.txt
cut -b 1-6 --complement output2.txt &> output3.txt
wget -i output3.txt
我希望有一种更简单的方法可以在网页上搜索链接“hd.reflection-black.7z”并保存链接文件。
这些文件存储在 url 中不包含文件名的谷歌驱动器上,因此在上面的第二行代码中使用“17”..