Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ダウンロードしてgunzipファイルにしたい。
wget ftp://ftp.direcory/file.gz gunzip file.gz
正常に動作します。
ただし、そのようなコマンドを簡素化したいので、これを試しました:
gunzip <(wget ftp://ftp.direcory/file.gz)
wget はファイルをダウンロードしますが、gunzip タスクが開始されません。
私の間違いはどこですか?
試す
wget -O - ftp://ftp.direcory/file.gz | gunzip -c > gunzip.out
詳しくはwget のドキュメントを参照してください。