「検索文字列」というパターンを含むすべてのファイルを検索するコードを考えてみましょう。
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.
したがって、エスケープされたセミコロンは必須のようです。これについて別の方法がありますか?
\;
を削除しています。これを行うだけです:
find . -type f -exec grep -il "search string" {} \; > log.txt