- 论坛徽章:
- 0
|
原帖由 yuyuyou 于 2005-12-4 15:35 发表
烈火兄:
LZ说要得到
222###dre###rrrrr#ffff
777###rrr###444
888###rrr###5455
不要3和其他的。
dbcat的xargs不知道怎么用的?
[root@localhost shell_200512]# sed -n -e '/#/!=' err.txt|xargs ...

yuyuyou 太可爱了 ^_^
方法:
First,find the rows we dont want to print.
- $ cat file
- 111###bbb###eeeee###rrrrr
- yeitqryrt
- twhy
-
- ejyh
-
-
- 222###dre###rrrrr#ffff
- 333###err###eeett###
-
- 444###eerr###ffff
-
-
- eryt
- 555###rrr###rrr#rrrr
- 666
- 777###rrr###444
- 888###rrr###5455
- $ sed -n '/#/!=' file|xargs -i echo -e "{}\n{}-1" |bc|sort -n|uniq
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
复制代码
Second,change these numbers into AWK patten
--> awk 'NR!=1&&NR!=2&&....'
- ]
- $sed -n '/#/!=' file|xargs -i echo -e "{}\n{}-1" |bc|sort -n|uniq|sed 's/1/NR!=&/;:t;N;s/\n/\&\&NR!=/;bt'
- NR!=1&&NR!=2&&NR!=3&&NR!=4&&NR!=5&&NR!=6&&NR!=7&&NR!=9&&NR!=10&&NR!=11&&NR!=12&&NR!=13&&NR!=14&&NR!=15&&NR!=16
复制代码
Third,Use xargs to pass the result to awk
-
- ..... | xargs -i awk '{}' file
复制代码
不知解释清楚了没..........
有点笨
ps:
About Sed :
Sed patten space and hold space
About xargs :
shell基础二:查找技巧,find及xargs的使用
xargs 如何使用?
xargs使用误区 |
|