文件
plym fury 77 73 2500
chevy nova 79 60 3000
ford mustang 65 45 17000
volvo gl 78 102 9850
ford ltd 83 15 10500
Chevy nova 80 50 3500
fiat 600 65 115 450
honda accord 81 30 6000
ford thundbd 84 10 17000
toyota tercel 82 180 750
chevy impala 65 85 1550
ford bronco 83 25 9525
我必须删除10,000美元或更多的所有汽车(文件的最后一列)。我必须通过在记录末尾匹配表示5位或更多位的正则表达式时退出来将排序的输出通过管道输出到sed来执行此操作。
这是我必须管道的命令:grep -iv chevy cars | sort -nk 5
我到目前为止尝试过:
grep -iv chevy cars | sort -nk 5 | sed -n '/[0-9]{5}*/'
但无济于事。
So far we have:
grep -iv chevy cars | sort -nk 5
Now let's delete the cars that are $10,000 or more. Pipe the output of the sort into
a sed to do this, by quitting as soon as we match a regular expression representing 5
(or more) digits at the end of a record (DO NOT use repetition for this):
You entered: grep -iv chevy cars | sort -nk 5 | sed -n '/[0-9]{5}$/'
Please try again.
答案 0 :(得分:5)
使用-n
开关,您必须明确p
rint匹配线,!p
打印非加工线,即不花费5位数值的汽车。同时将$
添加到模式以仅在结尾处匹配,并为重复组转义\{
和\}
,否则它将匹配数字后的文字字符串{5}
所以试试这个:sed -n '/[0-9]\{5\}$/!p'
如果您想在第一场比赛中退出而不是仅打印相关比赛,请尝试使用q
命令代替!p
。
答案 1 :(得分:0)
尝试
sed '/[0-9][0-9][0-9][0-9][0-9]$/ d'
看起来很乏味,但它确实有用!
答案 2 :(得分:0)
grep -iv chevy cars | sed '/[0-9][0-9][0-9][0-9][0-9]$/ d'