Linux fallocate split cat md5sum切割与合并
fallocate -l 50M cntfile
md5sum cntfile
25e317773f308e446cc84c503a6d1f85 cntfile
split -b 10MB cntfile
-rw-rw-r-- 1 hehe hehe 10000000 Oct 9 20:24 xaa
-rw-rw-r-- 1 hehe hehe 10000000 Oct 9 20:24 xab
-rw-rw-r-- 1 hehe hehe 10000000 Oct 9 20:24 xac
-rw-rw-r-- 1 hehe hehe 10000000 Oct 9 20:24 xad
-rw-rw-r-- 1 hehe hehe 10000000 Oct 9 20:24 xae
-rw-rw-r-- 1 hehe hehe 2428800 Oct 9 20:24 xaf
cat x* >new_cntfile
ll *cn*
-rw-rw-r-- 1 hehe hehe 52428800 Oct 1 19:53 cntfile
-rw-rw-r-- 1 hehe hehe 52428800 Oct 1 20:27 new_cntfile
md5sum new_cntfile
25e317773f308e446cc84c503a6d1f85 new_cntfile
Linux fallocate split cat md5sum切割与合并
最新推荐文章于 2025-12-16 17:06:35 发布
这篇博客介绍了在Linux环境下使用fallocate创建大文件,split进行文件切割,cat进行文件合并,以及md5sum验证文件完整性的基本操作。通过示例展示了这些命令的用法及其在实际工作中的应用。
3573

被折叠的 条评论
为什么被折叠?



