栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

Linux fallocate split yes 切割文件实例

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Linux fallocate split yes 切割文件实例

Linux fallocate split yes 切割文件实例
【按文件大小切割】
fallocate -l 20MB myfile
split -b 2MB myfile
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xaa
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xab
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xac
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xad
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xae
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xaf
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xag
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xah
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xai
-rw-rw-r-- 1 hehe hehe 2.0M Oct  1 00:15 xaj
【按文件行数切割】
yes "this is a test file" | head -c 10k > numfile
split -l 100 numfile split_file_
-rw-rw-r-- 1 hehe hehe 2.0K Oct  1 02:25 split_file_aa
-rw-rw-r-- 1 hehe hehe 2.0K Oct  1 02:25 split_file_ab
-rw-rw-r-- 1 hehe hehe 2.0K Oct  1 02:25 split_file_ac
-rw-rw-r-- 1 hehe hehe 2.0K Oct  1 02:25 split_file_ad
-rw-rw-r-- 1 hehe hehe 2.0K Oct  1 02:25 split_file_ae
-rw-rw-r-- 1 hehe hehe  240 Oct  1 02:25 split_file_af
【按文件数量切割】
fallocate -l 50M cntfile
split -d -n 5 cntfile
-rw-rw-r-- 1 hehe hehe  10M Oct  1 06:54 x00
-rw-rw-r-- 1 hehe hehe  10M Oct  1 06:54 x01
-rw-rw-r-- 1 hehe hehe  10M Oct  1 06:54 x02
-rw-rw-r-- 1 hehe hehe  10M Oct  1 06:54 x03
-rw-rw-r-- 1 hehe hehe  10M Oct  1 06:54 x04
【禁止生成 0 长度的文件】
fallocate -l 5 testfile
split --verbose -n 8 testfile
-rw-rw-r-- 1 hehe hehe    1 Oct  2 20:03 xaa
-rw-rw-r-- 1 hehe hehe    1 Oct  2 20:03 xab
-rw-rw-r-- 1 hehe hehe    1 Oct  2 20:03 xac
-rw-rw-r-- 1 hehe hehe    1 Oct  2 20:03 xad
-rw-rw-r-- 1 hehe hehe    1 Oct  2 20:03 xae
-rw-rw-r-- 1 hehe hehe    0 Oct  2 20:03 xaf
-rw-rw-r-- 1 hehe hehe    0 Oct  2 20:03 xag
-rw-rw-r-- 1 hehe hehe    0 Oct  2 20:03 xah
rm -f xa[a-h]
split --verbose -e -n 8 testfile
creating file ‘xaa’
creating file ‘xab’
creating file ‘xac’
creating file ‘xad’
creating file ‘xae’
-rw-rw-r-- 1 hehe hehe    1 Oct  1 00:07 xaa
-rw-rw-r-- 1 hehe hehe    1 Oct  1 00:07 xab
-rw-rw-r-- 1 hehe hehe    1 Oct  1 00:07 xac
-rw-rw-r-- 1 hehe hehe    1 Oct  1 00:07 xad
-rw-rw-r-- 1 hehe hehe    1 Oct  1 00:07 xae

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/309251.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号