我是靠谱客的博主 搞怪豆芽,最近开发中收集的这篇文章主要介绍Linux切割命令split ,可以切割日志文件,文本文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

一.split说明

 

split可以用来切割一个日志文件,这样便于处理日志。比如有一个12G的日志,需要删除某一行数据,知道行号,但用sed和vi比较慢,

就可以先用  split 切割 ,然后再删除那行,最后再重组合

 

二.使用说明

 

[root@bogon Desktop]# split --help

 

Usage: split [OPTION] [INPUT [PREFIX]]

Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default

size is 1000 lines, and default PREFIX is `x'.  With no INPUT, or when INPUT

is -, read standard input.

 

Mandatory arguments to long options are mandatory for short options too.

  -a, --suffix-length=N   use suffixes of length N (default 2)

  -b, --bytes=SIZE        put SIZE bytes per output file

  -C, --line-bytes=SIZE   put at most SIZE bytes of lines per output file

  -d, --numeric-suffixes  use numeric suffixes instead of alphabetic

  -l, --lines=NUMBER      put NUMBER lines per output file

      --verbose           print a diagnostic to standard error just

                            before each output file is opened

      --help     display this help and exit

      --version  output version information and exit

 

SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.

 

-a  切割后的文件名的后几位,用几位数字表示。默认是两位
-b  切割后的文件的大小
-C  切割后的文件每行多少字节数
-d  切割后的文件名的后几位用数字代替字母。默认是字母xx
-l   切割后的文件,每个文件都少行
 
三.举例说明
 
1.产看文件
 
[root@bogon Desktop]# ll
total 388
-rw-r--r-- 1 root root   4803 Feb 26  2009 gnome-terminal.desktop
-rw-r--r-- 1 root root 349027 May  5 04:06 mysql_data.gz
-rw------- 1 root root   1108 Apr 25 19:23 new file
drwxrwxrwx 2 root root   4096 Apr 24 06:39 NFS
-rw-r--r-- 1 root root    285 May  5 22:02 split.log
 
2.切割后文件名后缀为3个字母
 
[root@bogon Desktop]# split -a 3  split.log     
[root@bogon Desktop]# ll
total 396
-rw-r--r-- 1 root root   4803 Feb 26  2009 gnome-terminal.desktop
-rw-r--r-- 1 root root 349027 May  5 04:06 mysql_data.gz
-rw------- 1 root root   1108 Apr 25 19:23 new file
drwxrwxrwx 2 root root   4096 Apr 24 06:39 NFS
-rw-r--r-- 1 root root    285 May  5 22:02 split.log
-rw-r--r-- 1 root root    285 May  5 23:16 xaaa
 
3.切割后文件名后缀为3个字母,切割后的文件,每个文件两行内容,
 
[root@bogon Desktop]# split -a 3 -l 2 split.log
[root@bogon Desktop]# ll
total 412
-rw-r--r-- 1 root root   4803 Feb 26  2009 gnome-terminal.desktop
-rw-r--r-- 1 root root 349027 May  5 04:06 mysql_data.gz
-rw------- 1 root root   1108 Apr 25 19:23 new file
drwxrwxrwx 2 root root   4096 Apr 24 06:39 NFS
-rw-r--r-- 1 root root    285 May  5 22:02 split.log
-rw-r--r-- 1 root root     76 May  5 23:17 xaaa
-rw-r--r-- 1 root root    109 May  5 23:17 xaab
-rw-r--r-- 1 root root    100 May  5 23:17 xaac
 
4.切割后文件名后缀为3个(位)数字,切割后的文件,每个文件两行内容,
 
[root@bogon Desktop]# split -a 3 -l 2 -d  split.log
[root@bogon Desktop]# ll
total 436
-rw-r--r-- 1 root root   4803 Feb 26  2009 gnome-terminal.desktop
-rw-r--r-- 1 root root 349027 May  5 04:06 mysql_data.gz
-rw------- 1 root root   1108 Apr 25 19:23 new file
drwxrwxrwx 2 root root   4096 Apr 24 06:39 NFS
-rw-r--r-- 1 root root    285 May  5 22:02 split.log
-rw-r--r-- 1 root root     76 May  5 23:17 x000
-rw-r--r-- 1 root root    109 May  5 23:17 x001
-rw-r--r-- 1 root root    100 May  5 23:17 x002
-rw-r--r-- 1 root root     76 May  5 23:17 xaaa
-rw-r--r-- 1 root root    109 May  5 23:17 xaab
-rw-r--r-- 1 root root    100 May  5 23:17 xaac
  
四.参考
man split

声明:本文档可以随意更改,但必须署名原作者

作者:凤凰舞者 qq:578989855

 

 

最后

以上就是搞怪豆芽为你收集整理的Linux切割命令split ,可以切割日志文件,文本文件的全部内容,希望文章能够帮你解决Linux切割命令split ,可以切割日志文件,文本文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部