findとgrepの後にファイル行を出力する方法は?

findとgrepの後にファイル行を出力する方法は?

こんにちは。現在の日付のログファイルのエラーメッセージを出力したいと思います。

まず、特定のプレフィックスが付いた今日のログを検索します。

find /home/USER/logfilesError/ -maxdepth 1 -type f -name "xy_*" -daystart -mtime -1

それは私に出力を与えます:

/home/USER/logfilesError/xy_2071.log
/home/USER/logfilesError/xy_2072.log
/home/USER/logfilesError/xy_2073.log

このファイルで「ERROR」文字列を検索したいと思います。

grep -rl "ERROR" /home/USER/logfilesError/

これにより、今日だけでなく「エラー」を含むすべてのログファイルが提供されます。

出力(部分出力のみ):

/home/USER/logfilesError/xy_55.log
/home/USER/logfilesError/xy_1015.log

質問:

これをスクリプトに結合するにはどうすればよいですか?

ログファイルの1行構文は次のとおりです。

2013-11-24 06:30:30,549 [main] ERROR *(+Errormessage)*

ベストアンサー1

この試み:

find /home/USER/logfilesError/ -maxdepth 1 -type f -name "xy_*" \
    -daystart -mtime -1 -exec grep -Hl "ERROR" "{}" +

からman find

-exec command {} +
              This  variant  of the -exec action runs the specified command on
              the selected files, but the command line is built  by  appending
              each  selected file name at the end; the total number of invoca‐
              tions of the command will  be  much  less  than  the  number  of
              matched  files.   The command line is built in much the same way
              that xargs builds its command lines.  Only one instance of  `{}'
              is  allowed  within the command.  The command is executed in the
              starting directory.

おすすめ記事