h*****l 发帖数: 16 | |
m**h 发帖数: 207 | 2 rar supports many platforms, you can check if it has the
proper version for you.
【在 h*****l 的大作中提到】 : thanks!
|
g*s 发帖数: 12 | 3 有个命令叫split
自己man 看一看喽
【在 m**h 的大作中提到】 : rar supports many platforms, you can check if it has the : proper version for you.
|
m******r 发帖数: 4351 | 4 split does things messy. It's better you write one as splitter
(the way that I do now)
【在 g*s 的大作中提到】 : 有个命令叫split : 自己man 看一看喽
|
w***s 发帖数: 21 | 5 split is for text file, so I don't think it works for normal use.
【在 g*s 的大作中提到】 : 有个命令叫split : 自己man 看一看喽
|
s**s 发帖数: 242 | 6 二进制文件可以用dd拆,就是麻烦点,要自己算好,
例如把1MB的文件aa拆成两个:
dd if=aa of=a1 bs=512k count=1
dd if=aa of=a2 bs=512k skip=1
【在 w***s 的大作中提到】 : split is for text file, so I don't think it works for normal use.
|
s***e 发帖数: 108 | 7 I think tar can also do that
【在 w***s 的大作中提到】 : split is for text file, so I don't think it works for normal use.
|
i*******n 发帖数: 166 | 8
no. it works even for binary files.
【在 w***s 的大作中提到】 : split is for text file, so I don't think it works for normal use.
|
w***s 发帖数: 21 | 9 Sorry, you are right, the split do work for binary file!
The split command which split a big file into a 1k size should be like that:
split -b 1024 big_file_name whatever_prefix
^^^^byte
The following command can join the split small file into the orignal big file:
cat whatever_prefix* > big_file
These commands work fine in solaris and linux.
【在 i*******n 的大作中提到】 : : no. it works even for binary files.
|
c******n 发帖数: 4965 | 10 write a script it's so simple
【在 s**s 的大作中提到】 : 二进制文件可以用dd拆,就是麻烦点,要自己算好, : 例如把1MB的文件aa拆成两个: : dd if=aa of=a1 bs=512k count=1 : dd if=aa of=a2 bs=512k skip=1
|
b*********a 发帖数: 28 | 11 write one by yourself,
very simple one
if you need one I can send you one
SUN or SGI?
【在 i*******n 的大作中提到】 : : no. it works even for binary files.
|