Command-Line
任何 CLI 來驗證 URL?
我有一堆 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 內容?