文本文件命令

2009-05-13 15:01:49来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

wc, cat, cut, paste, cmp, tr, head, tail, sort, uniq, diff, sed, awk, grep, vim,lam, printf, join
comm, pr,colrm,fmt, tee, jot, rs, od, md5, sha1,sha256,rmd160, split, csplit
一,WC用法
功能说明:计算字数。
  语   法:wc [-clw][--help][--version][文件…]
  补充说明:利用wc指令我们可以计算文件的Byte数、字数、或是列数,若不指定任何文件名称,或是所给予的文件名为"-",则wc指令会从标准输入设备读取数据。假设不给予其参数,wc指令会一并显示列数、字数和Byte数
  参   数:-c 只显示Byte数,亦即字符数;
       -l 只显示列数;
       -w 只显示字数; 
       --help 在线帮助;
       --version 显示版本信息。
  范   例:
  计算文本文件TopGun的列数、字数和字符数:
  $ wc TopGun

二,CAT用法:
使用权限:所有使用者
使用方式:cat [-AbeEnstTuv] [--help] [--version] fileName
说明:把档案串连接后传到基本输出(萤幕或加 > fileName 到另一个档案)
参数:
-n 或 --number 由 1 开始对所有输出的行数编号
-b 或 --number-nonblank 和 -n 相似,只不过对于空白行不编号
-s 或 --squeeze-blank 当遇到有连续两行以上的空白行,就代换为一行的空白行
-v 或 --show-nonprinting
范例:
cat -n textfile1 > textfile2 把 textfile1 的档案内容加上行号后输入 textfile2 这个档案里
cat -b textfile1 textfile2 >> textfile3 把 textfile1 和 textfile2 的档案内容加上行号(空白行不加)之后将内容附加到 textfile3 里。
范例:
把 textfile1 的档案内容加上行号后输入 textfile2 这个档案里
cat -n textfile1 > textfile2
把 textfile1 和 textfile2 的档案内容加上行号(空白行不加)之后将内容附加到 textfile3 里。
cat -b textfile1 textfile2 >> textfile3
cat /dev/null > /etc/test.txt 此为清空/etc/test.txt档案内容
cat 也可以用来制作 image file。例如要制作软碟的 image file,将软碟放好后打
cat /dev/fd0 > OUTFILE
相反的,如果想把 image file 写到软碟,请打
cat IMG_FILE > /dev/fd0
注:
1. OUTFILE 指输出的 image 档名。
2. IMG_FILE 指 image file。
3. 若从 image file 写回 device 时,device 容量需与相当。
4. 通常用在制作开机磁片。



二,CUT用法:
Usage: cut [OPTION]... [FILE]...
用法: cut [选项] ... [文件]
Print selected parts of lines from each FILE to standard output.
Mandatory arguments to long options are mandatory for short options too.
-b, --bytes=LIST       output only these bytes
只输出这些字节
-c, --characters=LIST     output only these characters
                                        只输出这些字符
-d, --delimiter=DELIM use DELIM instead of TAB for field delimiter
                                                     使用DELIM代替TAB为分隔符

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Body massage in suzhou

下一篇:FreeBSD鼠标不能使用