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.
フォルダ内のすべての.gzファイルを解凍し、それらを新しいファイルに結合したかったのです。.gzファイルごとに非圧縮ファイルを生成せずにそれを行うことはできますか?
どうもありがとう!
あなたはこれを行うことができます :
zcat *.gz > newfile
後に*.gzを削除したい場合:
zcat *.gz > newfile && rm -f *.gz