9
9

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 5 years have passed since last update.

大きいファイルを分割したいときにつかうsplit command

Last updated at Posted at 2014-05-28

heapdumpなどの大きいファイルをやりとりしたいときに、相手に送る手段が限られていたりして、圧縮だけでは送れないことがよくあったりする。そのときに使うsplit commandの使い方をよく忘れるのでメモ

$ split -b 40M heap.bin.20140528.113433.zip heap_20140528

-bでファイルサイズを指定。第二引数でprefixを指定。

追記

良い感じの解説ページ見つけた
UNIX / Linux split Command Examples

9
9
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
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?