我想从wiki获取随机页面并将其粘贴到txt文件中。
curl -I https://en.wikipedia.org/wiki/Special:Random|grep -E "Location:"|cut -d ' ' -f2 > "result.txt"
但是当我从txt文件中检索它时,就会出现错误。
cat result.txt| xargs -I % curl %
答案 0 :(得分:1)
通过添加curl
开关,只需跟踪-L
的重定向怎么样?无需解析Location
标题:
curl -L https://en.wikipedia.org/wiki/Special:Random