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.
我想下载并压缩文件。
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 文档。