shell工具之cut

Posted xiaoxianxianxian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell工具之cut相关的知识,希望对你有一定的参考价值。

在文件中负责剪切数据
cut -f 列号 filename(-f列号,提取第几列)
cut -d 分隔符 filename(-d分隔符,按照指定分隔符分割列)
cat ***|grep ***|cut -d 分隔符 -f 列号
#选取系统PATH变量值,第2个“:”开始后的所有路径
echo $PATH|cut -d : -f 3-
#切割ifconfig后打印的IP地址
ifconfig eth0|grep "inet addr"|cut -d : -f 2|cut -d " " -f 1

#切割ifconfig后打印的IP地址
ifconfig eth0|grep "inet addr"|awk -F : ‘{print $2}‘|awk -F “ ” ‘{print $1}‘

以上是关于shell工具之cut的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本之cut,sort,uniq,tr工具用法,Here Document和Expect用法

shell工具之cutsed命令

shell字符串截取之cut

shell编程之文本小工具

shell编程之脚本工具sortuniqtrcut

Shell工具cut/sed/awk/sort