5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

でかいファイルを分割&結合するコマンド

Last updated at Posted at 2020-10-28

test.tar.gzという名前の、でかいファイルを2GBづつに分割

split -b 2000m -a 2 test.tar.gz test_p_

結合

cat test_p_* > test2.tar.gz

でかいログファイルをUSBメモリに保存する時などに使う

参考

【UNIX】ディレクトリをtar.gzにして分割する

5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?