Command-Line

任何 CLI 來驗證 URL?

  • July 15, 2012

我有一堆 URL(超過 1,000 個),我想知道是否有任何 CLI 腳本來驗證 http 模式的 URL?

您可以使用 Perl 的Regexp::Common::URI::http. 從CPAN 文件

use Regexp::Common qw /URI/;

while (<>) {
   /$RE{URI}{HTTP}/       and  print "Contains an HTTP URI.\n";
}

或者您是否想egrep "^https?:\/\/" yourlistofurls檢查該 url 是否也指向有效的 http 內容?

引用自:https://unix.stackexchange.com/questions/43091