美文网首页
shell-split命令

shell-split命令

作者: 哆来咪发都不会 | 来源:发表于2019-08-15 20:05 被阅读0次
    按照文件大小切割
    [root@localhost wang]# split -b 100M a.txt 
    
    按照行数切割
    [root@localhost wang]# split -l 100 a.txt
    
    指定切割后的文件前缀
    [root@localhost test]# ll -h
    总用量 56K
    -rw-r--r--. 1 root root 52K 7月  12 15:01 test.log
    [root@localhost test]# split -b 10k test.log huanzi.
    [root@localhost test]# ll -h
    总用量 120K
    -rw-r--r--. 1 root root  10K 8月  15 20:12 huanzi.aa
    -rw-r--r--. 1 root root  10K 8月  15 20:12 huanzi.ab
    -rw-r--r--. 1 root root  10K 8月  15 20:12 huanzi.ac
    -rw-r--r--. 1 root root  10K 8月  15 20:12 huanzi.ad
    -rw-r--r--. 1 root root  10K 8月  15 20:12 huanzi.ae
    -rw-r--r--. 1 root root 1.1K 8月  15 20:12 huanzi.af
    -rw-r--r--. 1 root root  52K 7月  12 15:01 test.log
    [root@localhost test]# 
    

    相关文章

      网友评论

          本文标题:shell-split命令

          本文链接:https://www.haomeiwen.com/subject/kxutsctx.html