ファイルから(パターンに一致する)URLを抽出してダウンロードしたい。これが私のegrep式です(Cygwinで):
egrep -o -e "http([^\"]*)filter=[0-9]+" myfile.html
これは、リダイレクトまたはパイプを使用しようとするまでは正常に機能します。例 :
egrep -o -e "http([^\"]*)filter=[0-9]+" myfile.html > tmp.html
また
egrep -o -e "http([^\"]*)filter=[0-9]+" myfile.html | wget -i -
エラー :
egrep: >: No such file or directory
エラーは引用の前のバックスラッシュが原因だと思いますが、エスケープしてみました。動作しません。