2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

tarファイルの分割

Posted at

tarファイルの分割方法は以下コマンドで実施可能です。以下コマンドでは100MB単位で分割できます。

split-b 100M file.tar "file.tar.part-"

マージは以下コマンドで可能です。

cat file.tar.part-* > file.tar
2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?