代码之家  ›  专栏  ›  技术社区  ›  John-Henry

在Internet存档上重定向后获取URL

  •  0
  • John-Henry  · 技术社区  · 5 年前

    我对通过internet存档以编程方式保存URL感兴趣。我这样做的方式 https://web.archive.org/save/ {myLink}。

    现在我一直在用 this stackoverflow 回答,但它不能一直坚持下去。

    curl https://web.archive.org/save/{myLink} -s -L -o /dev/null -w '%{url_effective}'
    
    0 回复  |  直到 5 年前
        1
  •  1
  •   John-Henry    5 年前

    curl https://web.archive.org/save/<<<url>>> -s -I | grep Content-Location | awk '{print "http://web.archive.org/save" $2}'