k**e 发帖数: 86 | 1 一个文件(binary和asc text混合)含有一个特定长度的文件尾, 并且文件尾是以一个特定
的ASCII字符串开头的,请问,怎样用SCRIPT将这个文件尾移到文件首? 谢谢! | t*******a 发帖数: 22 | 2 tail filename -c LENGTH >> temp
cat temp > foo
head lengthofthefile-LENGTH >> foo
mv foo filename
You should be able to do it with a single command using pipe. Don't wanna
bother doing that for you.
br />
【在 k**e 的大作中提到】 : 一个文件(binary和asc text混合)含有一个特定长度的文件尾, 并且文件尾是以一个特定 : 的ASCII字符串开头的,请问,怎样用SCRIPT将这个文件尾移到文件首? 谢谢!
|
|