由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - UNIX下如何把一个大文件压缩成好几个小文件?
相关主题
哪里可以下载EMACSwhy my "biff" doesn't work?
再次急问: *.tgz 文件怎么解?大家都是用什么机子装UNIX?
如何在UNIX下看中文is IRIX a brand? or it tells
ICQ on SGI UNIXAIX,Solaris, HP-Unix,Linux及Windows的优缺点
[转载] 哪个知道有没有UNIX用得中文平台?怎样打开UNIX系统中ftp, scp服务?
UNIX下发email的问题unix 菜鸟问:
UNIX下的email程序土问题:关于重新启动比较大的unix server (转载)
Is there a command to know speed of CPU in Unixhow to use 'ls' to show color
相关话题的讨论汇总
话题: split话题: file话题: 文件话题: unix话题: big
进入Unix版参与讨论
1 (共1页)
h*****l
发帖数: 16
1
thanks!
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.

1 (共1页)
进入Unix版参与讨论
相关主题
how to use 'ls' to show color[转载] 哪个知道有没有UNIX用得中文平台?
Re: 怎么在UNIX下面放CD?UNIX下发email的问题
books about advanced UNIX commandUNIX下的email程序
在unix下怎么听CD亚Is there a command to know speed of CPU in Unix
哪里可以下载EMACSwhy my "biff" doesn't work?
再次急问: *.tgz 文件怎么解?大家都是用什么机子装UNIX?
如何在UNIX下看中文is IRIX a brand? or it tells
ICQ on SGI UNIXAIX,Solaris, HP-Unix,Linux及Windows的优缺点
相关话题的讨论汇总
话题: split话题: file话题: 文件话题: unix话题: big