複数行のgrepを実行する方法


15

2行に表示されるテキストに対してgrepをどのように実行しますか?

例えば:

pbsnodes Linuxクラスタの使用率を返すコマンドです

root$ pbsnodes
node1
    state = free
    procs = 2
    bar = foobar

node2
    state = free
    procs = 4
    bar = foobar

node3
    state = busy
    procs = 8
    bar = foobar

「フリー」状態のノードに一致するprocの数を判別したい。これまで「procの数」と「フリー状態のノード」を特定できましたが、それらをすべてのフリーprocを表示する1つのコマンドに結合したいと思います。

上記の例では、正解は6(2 + 4)になります。

私が持っているもの

root$ NUMBEROFNODES=`pbsnodes|grep 'state = free'|wc -l`
root$ echo $NUMBEROFNODES
2

root$ NUMBEROFPROCS=`pbsnodes |grep "procs = "|awk  '{ print $3 }' | awk '{ sum+=$1 } END { print sum }'`
root$ echo $NUMBEROFPROCS
14

「procs = x」と表示されるすべての行を検索するにはどうすればよいですか?ただし、その上の行が「state = free」と表示される場合のみですか?

回答:


12

データが常にその形式である場合、単純にそれを書くことができます。

awk -vRS= '$4 == "free" {n+=$7}; END {print n}'

レコードは段落であるRS=ことを意味します)。

または:

awk -vRS= '/state *= *free/ && match($0, "procs *=") {
  n += substr($0,RSTART+RLENGTH)}; END {print n}'

5
$ pbsnodes
node1
    state = free
    procs = 2
    bar = foobar

node2
    state = free
    procs = 4
    bar = foobar

node3
    state = busy
    procs = 8
    bar = foobar
$ pbsnodes | grep -A 1 free
    state = free
    procs = 2
--
    state = free
    procs = 4
$ pbsnodes | grep -A 1 free | grep procs | awk '{print $3}'
2
4
$ pbsnodes | grep -A 1 free | grep procs | awk '{print $3}' | paste -sd+ 
2+4
$ pbsnodes | grep -A 1 free | grep procs | awk '{print $3}' | paste -sd+ | bc 
6

https://en.wikipedia.org/wiki/Pipeline_(Unix)


4

を使用して行う方法の1つを次に示しpcregrepます。

$ pbsnodes | pcregrep -Mo 'state = free\n\s*procs = \K\d+'
2
4

$ pbsnodes | \
    pcregrep -Mo 'state = free\n\s*procs = \K\d+' | \
    awk '{ sum+=$1 }; END { print sum }'
6

3

出力形式は、Perlの段落の丸みに対応しています。

pbsnodes|perl -n00le 'BEGIN{ $sum = 0 }
                 m{
                   state \s* = \s* free \s* \n 
                   procs \s* = \s* ([0-9]+)
                 }x 
                    and $sum += $1;
                 END{ print $sum }'

注意

これが機能するのは、Perlの「段落」という考えが、1つ以上の空白行で区切られた空白以外の行の塊であるためです。nodeセクション間に空白行がなければ、これは機能しませんでした。

こちらもご覧ください


3

固定長データ(レコード内の行数を指す固定長)sedがある場合N、次の行をパターンスペースに結合するコマンド(数回)を使用できます。

sed -n '/^node/{N;N;N;s/\n */;/g;p;}'

次のような出力が得られます。

node1;state = free;procs = 2;bar = foobar
node2;state = free;procs = 4;bar = foobar
node3;state = busy;procs = 8;bar = foobar

可変レコード組成物(例えば、空の区切り線付き)の場合、あなたは、分岐命令を利用することができtそしてb、しかし、awkあなたがそこに、より快適な方法で取得する可能性があります。


3

のGNU実装にgrepは、前の行も出力する2つの引数があります(-B-A、一致の)と後()の。manページのスニペット:

   -A NUM, --after-context=NUM
          Print NUM lines of trailing context after matching lines.  Places a line containing  a  group  separator  (--)  between  contiguous  groups  of  matches.   With  the  -o  or
          --only-matching option, this has no effect and a warning is given.

   -B NUM, --before-context=NUM
          Print  NUM  lines  of  leading  context  before  matching  lines.   Places  a  line  containing  a group separator (--) between contiguous groups of matches.  With the -o or
          --only-matching option, this has no effect and a warning is given.

だからあなたの場合、あなたは state = free次の行て印刷する必要があります。それを質問のスニペットと組み合わせると、次のようなものになります。

usr@srv % pbsnodes | grep -A 1 'state = free' | grep "procs = " | awk  '{ print $3 }' | awk '{ sum+=$1 } END { print sum }'
6

そしてもう少し短く:

usr@srv % pbsnodes | grep -A 1 'state = free' | awk '{ sum+=$3 } END { print sum }'
6

awkパターンマッチングを行います。必要ありませんgrepステファンの答えを
jasonwryan

まあ、sedパターンマッチングも同様です。また、、perlまたはphp、または好きな言語を使用することもできます。しかし、少なくとも質問の見出しは複数行のgrepを要求しました... ;-)
binfalse

うん:しかし、awkとにかくあなたが使っていたのを見て... :)
ジェイソン・ライアン

0

...そして、これがPerlソリューションです:

pbsnodes | perl -lne 'if (/^\S+/) { $node = $& } elsif ( /state = free/ ) { print $node }'

0

awk getline次のコマンドを使用できます。

$ pbsnodes | awk 'BEGIN { freeprocs = 0 } \
                  $1=="state" && $3=="free" { getline; freeprocs+=$3 } \
                  END { print freeprocs }'

からman awk :

   getline               Set $0 from next input record; set NF, NR, FNR.

   getline <file         Set $0 from next record of file; set NF.

   getline var           Set var from next input record; set NR, FNR.

   getline var <file     Set var from next record of file.

   command | getline [var]
                         Run command piping the output either into $0 or var, as above.

   command |& getline [var]
                         Run  command  as a co-process piping the output either into $0 or var, as above.  Co-processes are a
                         gawk extension.
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.