Linux中cut命令的使用

CUT可以对file(或stdin或pipe)的每行抽取出希望抽取的部分 extract(cut out) selected fields of each line of a file.
【用法】
    cut -bLIST [-n] [file]
    cut -cLIST [file]
    cut -fLIST [-dDELIM] [-s] [--output-delimiter=STRING] [file]
LIST
LIST是使用整数(按照升序)表示的需要抽取的 位置
  • 枚举list:
使用 ,(逗号)或blank-character表示;
  • 范围range:
使用 -表示。
例如: 1,4,71-3,8;或者省略表示: -5,10 (等价于 1-5,10), 3- (等价于3-末尾)。
file
要抽取文件的路径名;如果没有指定或者使用 -,则从stdin接受数据。
1. 按照字节 byte 抽取 cut -bLIST [-n] [file]
a. 例如: cut -b1-5 表示抽取每行的第1到第5个字节;
完整的例子: echo "this is min" | cut -b1-6 返回 this i
b. cut -bLIST -n: -n和-b结合使用防止multi-byte多字节字符被切割;
2. 按照字符抽取 cut -cLIST [file]
例如: echo "this is min" | cut -c1-6,返回 this i
3. 按照分割以后的域 field 抽取
cut -fLIST [-dDELIM] [-s] [--output-delimiter=STRING] [file]
过程为:先对每行的字符串按照 -dDELIM指定的分隔符DELIM(默认使用TAB)进行分割;然后按照LIST的值返回指定域的内容。
例如:
echo "this is min" | cut -f1,3 返回 this min按照默认的TAB进行分割,返回结果还是按照TAB
echo "this_is_min" | cut -f1,3 -d"_" 返回 this_min ,按照指定的 _ 进行分割,返回结果使用 _ 分割
  • 对于没有DELIM的行会完全返回,如果不希望返回可以使用-s
  • 默认返回的各个域仍按照-d指定的DELIM分割显示,如果希望结果中使用指定的分隔符,可以使用--output-delimiter=STRING指定。
例如: echo "this_is_min" | cut -f1,3 -d"_" --output-delimiter="-" 返回结果为 this-min
应用举例:
1 有一页电话号码薄文件contacts.txt,上面按顺序规则地写着”人名、家庭住址、电话、备注”等,假如使用;隔开。
如果希望抽取所有人的名字和其对应的电话号码,使用命令:
cat contacts.txt | cut -f1,3 -d";"
2 要查看Linux下当前所有的用户:
cat /etc/passwd | cut -f1,3 -d":"
第二列大于500的为创建的用户,小于500的为系统定义的用户。
【参考】 http://www.computerhope.com/unix/ucut.htm
 
例如:
 
###################################################################
## ckinstance.ksh ##
###################################################################
echo "`date` "
echo "Oracle Database(s) Status `hostname` "
namelst=`ps -ef|grep ora_pmon|grep -v grep|awk '{print $8}'|cut -c10-15`
for name in $namelst
do
if [ -z  $name ];then
echo "Oracle Instance - $name: Down"
else
echo "Oracle Instance - $name: Up"
fi
done

CUUG

更多oracle视频教程请点击:http://crm2.qq.com/page/portalpage/wpa.php?uin=800060152&f=1&ty=1&aty=0&a=&from=6

你可能感兴趣的:(linux,cut命令)