博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下二进制文件的分割与合并
阅读量:6422 次
发布时间:2019-06-23

本文共 3348 字,大约阅读时间需要 11 分钟。

hot3.png

dd的作用是转换和拷贝文件,我们可以利用它来分割文件,相关的选项如下:

if=:输入的文件名
of=finename:输出的文件名
bs=bytes:一次读写的字节数,默认是512bytes
skip=blocks:拷贝前,跳过的输入文件的前blocks块,块的大小有bs决定
count=blocks:只拷贝输入文件的前blocks块
例如,现在有一个文件,大小为116616字节:
[root]# du -b file 
116616 file 
将其分割为两文件file1和file2,那我们就设置每块为1024字节,将file的前60块放入file1,余下的放入file2:
[root]# dd if=file bs=1024 count=60 skip=0 of=file1 
[root]# dd if=file bs=1024 count=60 skip=60 of=file2 
然后用cat将两个文件合并为file.bak,要注意文件的顺序:
[root]# cat file1 file2 > file.bak 
可以用md5sum验证一下file和file.bak:
[root]# md5sum file 
3ff53f7c30421ace632eefff36148a70 file 
[root]# md5sum file.bak 
3ff53f7c30421ace632eefff36148a70 file.bak 
可以证明两个文件时完全相同的。
为了方便分割、合并文件,我写了两个脚本:
ddf.sh
#ddf.sh:分割文件,分割后的文件以数字结尾,例如file分割为两个文件:file1和file2 
#!/bin/sh 
#使用脚本是第一参数是要分割的文件名 
Filename=$1 
=0 
=`pwd` 
#验证文件名是否正确,然后计算文件的大小
if [ -z $Filename ];then 
echo ":The file name can not be empty" 
 
fi 
if [ -e $Filename ];then 
Filesize=`du -b $Filename | awk '{print $1}'` 
if [ $Filesize == 0 ];then 
echo "Error:The File size is zero!" 
exit 
fi 
echo "The file size is $Filesize Byte" 
echo "Plese enter the subfile size(KB):" 
else 
echo "Error:$Filename does not !" 
exit 
fi 
#输入分割后每个文件的大小,单位是KB 
read 
if [ -z $Subfilesize ];then
echo "Error:Input can not be empty"
exit
fi 
echo $Subfilesize | grep '^[0-9]\+$' >> /dev/null
if [ $? -ne 0 ];then
echo "Error:The Input is not a number!"
exit
elif [ $Subfilesize -eq 0 ];then
echo "Error:The Subfile size is zero!"
exit
fi 
#计算需要分割为几个文件 
SubfileByte=` $Subfilesize \* 1024`
=`expr $Filesize / $SubfileByte`
if [ `expr $ % $Subfilesize` -ne 0 ];then
Subfilenum=`expr $Subfilenum + 1`
fi
#将文件分割 
echo "$Filename will be divided into $Subfilenum" 
i=1
skipnum=0
while [ $i -le $Subfilenum ]
do
echo "$Filename$i"
dd if=$Filename of="$/$Filename$i" bs=1024 count=$Subfilesize skip=$skipnum
i=`expr $i + 1`
skipnum=`expr $skipnum + $`
done
echo "$Filename has been divided into $Subfilenum"
echo "Done !" 
caf.sh
#caf.sh:合并文件,需要合并的文件要放在一个文件夹里 
# 文件名分为两个部分,第一部分都相同,第二部分必须是从1开始的连续数字,例如file1,file2,file3 
# 合并后的文件名为file.bak 
#!/bin/sh 
#输入文件名的第一部分 
echo "Please enter file name:" 
read Filename
if [ -z $Filename ];then 
echo "Error:The file name can not be empty" 
exit 
fi 
#输入待合并文件的个数 
echo "Please enter the number of subfiles:" 
read Subfilenum
if [ -z $Subfilenum ];then
echo "Error:The number of subfiles can not be empty"
exit
fi
echo $Subfilenum | grep '^[0-9]\+$' > /dev/null
if [ $? -ne 0 ];then
echo "Error:Input must be a number"
exit
fi
if [ $Subfilenum -eq 0 ];then
echo "Error:The number of subfiles can not be zero"
exit
fi 
#合并文件 
i=1
=$Filename\.bak
while [ $i -le $ ]
do
=$$i
if [ -e $Subfilename ];then
echo "$Subfilename done!"
cat $Subfilename >> $Newfile
i=` $i + 1`
else
echo ":$ does not "
rm -rf $Newfile
fi
done
echo "Subfiles be merged into $"
echo "Success!" 
用这两个脚本完成对file的分割、合并:
[root]# ./ddf.sh file 
The file size is 116616 Byte 
Plese enter the subfile size(KB): 
60 
file will be divided into 2 
file1 
记录了60+0 的读入 
记录了60+0 的写出 
61440字节(61 kB)已复制,0.0352612 秒,1.7 MB/秒 
file2 
记录了53+1 的读入 
记录了53+1 的写出 
55176字节(55 kB)已复制,0.0316272 秒,1.7 MB/秒 
file has been divided into 2 
Done ! 
[root]# ls 
caf.sh ddf.sh file file1 file2
[root]# ./caf.sh 
Please enter file name:
file
Please enter the number of subfiles:
file1 done!
file2 done!
Subfiles be merged into file.bak
Success!
[root]# ls 
caf.sh ddf.sh file file1 file2 .bak

 

image.php?url=0KPpUNohfT

转载于:https://my.oschina.net/u/3635497/blog/2451351

你可能感兴趣的文章
代理模式
查看>>
javaweb学习总结(二十四)——jsp传统标签开发
查看>>
让script的type属性等于text/html
查看>>
linux 文件系统sysvinit 流程分析
查看>>
体素科技:2018年,算法驱动下的医学影像分析进展
查看>>
Vue 折腾记 - (8) 写一个挺靠谱的多地区选择组件
查看>>
VS Code折腾记 - (3) 多图解VSCode基础功能
查看>>
『翻译』Node.js 调试
查看>>
我的iOS开发之路总结(更新啦~)
查看>>
Java NIO之拥抱Path和Files
查看>>
微信原图泄露的只能是 Exif ,你的隐私不在这!!!
查看>>
微信小程序教学第三章(含视频):小程序中级实战教程:列表篇-页面逻辑处理...
查看>>
页面间通信与数据共享解决方案简析
查看>>
Swift 中 Substrings 与 String
查看>>
作为一个开源软件的作者是一种什么样的感受?
查看>>
移动端适配知识你到底知多少
查看>>
TiDB 在 G7 的实践和未来
查看>>
重新认识javascript对象(三)——原型及原型链
查看>>
小学生学“数学”
查看>>
【Vue】组件使用之参数校验
查看>>