AIX で -A/-B 置換の前後の行を grep する

AIX で -A/-B 置換の前後の行を grep する

私は AIX 6.1 を使用していますが、これは以下のフラグをサポートしていませ-Bん:-A

grep: Not a recognized flag: B

実行したいとします:

cat file | grep -E -B4 'Directory entry type.*Indirect' | grep "Database name" | awk  '{print $4}'

このようなロジックを AIX で実行するにはどうすればよいですか?

編集

実際のコードは次のとおりです。

NAME_EXISTS=`db2 LIST DB DIRECTORY | grep -E -B5 'Directory entry type.*Remote' | grep "Database alias" | awk '{print $4}' | grep -i ${NAME} | wc -l`
if [ ${NAME_EXISTS} -gt 0 ]; then
    db2 LIST DB DIRECTORY | grep -E -A5 "Database alias.*${NAME}"
fi

アイデアは、 という名前のリモート DB があるかどうかを調べ$NAME、見つかった場合は で始まる 5 行を表示するというものですDatabase alias.*${NAME}$NAMEは 内で一意ですDatabase alias

出力はdb2 LIST DB DIRECTORY次のようになります。

 System Database Directory

 Number of entries in the directory = 3

Database 1 entry:

 Database alias                       = OLTPA
 Database name                        = OLTPA
 Local database directory             = /db2/data
 Database release level               = 10.00
 Comment                              =
 Directory entry type                 = Indirect
 Catalog database partition number    = 0
 Alternate server hostname            =
 Alternate server port number         =

Database 2 entry:

 Database alias                       = OLTPF
 Database name                        = OLTP
 Node name                            = OLTPN
 Database release level               = 10.00
 Comment                              =
 Directory entry type                 = Remote
 Catalog database partition number    = -1
 Alternate server hostname            =
 Alternate server port number         =

Database 3 entry:

 Database alias                       = ADMIN
 Database name                        = ADMIN
 Local database directory             = /db2/data
 Database release level               = 10.00
 Comment                              =
 Directory entry type                 = Indirect
 Catalog database partition number    = 0
 Alternate server hostname            =
 Alternate server port number         =

出力は次のようにNAME=OLTPFなります:

 Database alias                       = OLTPF
 Database name                        = OLTP
 Node name                            = OLTPN
 Database release level               = 10.00
 Comment                              =
 Directory entry type                 = Remote

NAME=OLTPE出力がないからです。

答え1

ed は、このタスクを完了するための簡単な方法を提供する場合があります。

一致するものが 1 つしかないと想定できる場合は、パイプラインの代替として、ed を使用して、不要な cat と 2 番目の grep を削除します。

ed -s file <<\EOED | awk '/Database name/ {print $4}'
    /Directory entry type.*Indirect/-4,//p
    q
EOED

複数ある場合は、重複しない一致するものがあれば、ed のグローバル コマンドを使用してマークできます。

ed -s file <<\EOED | awk '/Database name/ {print $4}'
    g/Directory entry type.*Indirect/-4,.p
    q
EOED

重複する一致のケースを示すために、文字列 を一致させfoo、7 行目と 9 行目に一致があり、各一致の前の 3 行をコンテキストとして取得していると仮定すると、出力は次のようになります。

line 4      <--- context
line 5      <--- context
line 6      <--- context
line 7 foo  <--- matched
line 6      <--- context      <--- repeated
line 7 foo  <--- context      <--- repeated
line 8      <--- context
line 9 foo  <--- matched
line 10
line 11

答え2

私は少し違うやり方をします。まず、db2 LIST DB DIRECTORYコマンドを実行し、その出力をテキスト ファイルに保存します。こうすれば、何度も再実行する必要がありません。次に、ターゲット名ごとに、関連する行を収集する awk スクリプトに名前を渡します。

## Run the db command
tempfile=$(mktemp)
db2 LIST DB DIRECTORY > "$tmpfile"
## I am assuming you will have a loop for the different target names
for name in OLTPF OLTPA; do
  awk -v name="$name" '{
       if(/Database alias/){n=$4; a[n]=$0; i=1}
       if (i<=6 && i>1){ a[n]=a[n]"\n"$0}
       i++;
      }END{if(name in a){print a[name]}}' $tempfile
done

答え3

$ awk -v RS= -F'\n' -v OFS='\n' '$1 ~ " OLTPF$"{for (i=1;i<=6;i++) print $i}' file
 Database alias                       = OLTPF
 Database name                        = OLTP
 Node name                            = OLTPN
 Database release level               = 10.00
 Comment                              =
 Directory entry type                 = Remote

関連情報