Difference between revisions of "Split"
From Linuxintro
imported>ThorstenStaerk (Created page with "split is a command that splits a file into several chunks like this: # ls hugefile.tar.gz hugefile.tar.gz # split -b 2GB export1.tar.gz # ls -ltr [...] -rw-r...") |
imported>ThorstenStaerk |
||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
# ls hugefile.tar.gz | # ls hugefile.tar.gz | ||
hugefile.tar.gz | hugefile.tar.gz | ||
− | # split -b 2GB | + | # split -b 2GB hugefile.tar.gz |
# ls -ltr | # ls -ltr | ||
[...] | [...] | ||
Line 9: | Line 9: | ||
-rw-r--r-- 1 username users 2000000000 2012-07-05 06:18 xab | -rw-r--r-- 1 username users 2000000000 2012-07-05 06:18 xab | ||
-rw-r--r-- 1 username users 1047163622 2012-07-05 06:18 xac | -rw-r--r-- 1 username users 1047163622 2012-07-05 06:18 xac | ||
+ | |||
+ | = See also = | ||
+ | * [http://unixhelp.ed.ac.uk/CGI/man-cgi?split split's man page] |
Latest revision as of 05:09, 19 April 2014
split is a command that splits a file into several chunks like this:
# ls hugefile.tar.gz hugefile.tar.gz # split -b 2GB hugefile.tar.gz # ls -ltr [...] -rw-r--r-- 1 username users 5047163622 2012-07-05 05:07 hugefile.tar.gz -rw-r--r-- 1 username users 2000000000 2012-07-05 06:18 xaa -rw-r--r-- 1 username users 2000000000 2012-07-05 06:18 xab -rw-r--r-- 1 username users 1047163622 2012-07-05 06:18 xac