删除文本流中的第一个单词

问题描述 投票:24回答:5

如何从流中的每行文本中删除第一个单词?即

$cat myfile 
some text 1
some text 2
some text 3

我想要的是什么

$cat myfile | magiccommand 
text 1
text 2
text 3

我怎么用bash来解决这个问题呢?我可以使用awk'{print $ 2 $ 3 $ 4 $ 5 ....}'但这很麻烦,会导致所有空参数的额外空格。我当时认为sed可能会这样做,但我找不到任何这方面的例子。任何帮助表示赞赏!谢谢!

bash sed awk cat
5个回答
57
投票

根据您的示例文本,

cut -d' ' -f2- yourFile

应该做的工作。


10
投票

这应该工作:

$ cat test.txt
some text 1
some text 2
some text 3

$ sed -e 's/^\w*\ *//' test.txt
text 1
text 2
text 3

7
投票

这是使用awk的解决方案

awk '{$1= ""; print $0}' yourfile 

4
投票

运行这个sed "s/^some\s//g" myfile你甚至不需要使用管道


0
投票

要删除第一个单词,直到空格,无论存在多少个空格,请使用:sed 's/[^ ]* *//'

例:

$ cat myfile 
some text 1
some  text 2
some     text 3

$ cat myfile | sed 's/[^ ]* *//'
text 1
text 2
text 3
© www.soinside.com 2019 - 2024. All rights reserved.