web-dev-qa-db-ja.com

(grepを使用する)findコマンドからの出力をログファイルにリダイレクトするにはどうすればよいですか?

「検索文字列」というパターンを含むすべてのファイルを検索するコードを考えてみましょう。

bash-3.2$ # The below find works fine..
bash-3.2$ find . -type f -exec grep -il "search string" {} \;
bash-3.2$ # But I am unable to redirect output to a log file..
bash-3.2$ find . -type f -exec grep -il "search string" {} \ > log.txt
find: incomplete statement
bash-3.2$

Solarisのマニュアルページから find

-exec command   True if the executed command returns a  zero
                value  as  exit  status.   The end of command
                must be punctuated by an  escaped  semicolon.
                A  command  argument  {}  is  replaced by the
                current path name.

したがって、エスケープされたセミコロンは必須のようです。これについて別の方法がありますか?

6
Kent Pawar

\;を削除しています。これを行うだけです:

find . -type f -exec grep -il "search string" {} \; > log.txt
10
terdon