本文介绍了如何从cut命令获得倒数第二场的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一组数据作为输入,并需要根据deleimiter第二个最后一个字段。线可具有分隔的不同的号码。我怎样才能获得倒数第二场?
例如输入
文本,胡说,blaah,富
这是另一个,文字,线条
期望的输出
blaah
文本
解决方案
得到的并能够找出了答案:
猫数据文件|转速|切-d'/'-f 2 |转
I have a set of data as input and need the second last field based on deleimiter. The lines may have different numbers of delimiter. How can I get second last field ?
example input
text,blah,blaah,foo
this,is,another,text,line
expected output
blaah
text
解决方案
Got a hint from Unix cut except last two tokens and able to figure out the answer :
cat datafile | rev | cut -d '/' -f 2 | rev
这篇关于如何从cut命令获得倒数第二场的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!