Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
または.c、テキスト ファイル内のファイルにファイルのリストが含まれています。ただし、実行時に問題が発生した場合:.cpp.h
.c
.cpp
.h
$ grep -sr ^.*\.(c|cpp|h)$ . bash: syntax error near unexpected token `('
テストする Unix ボックスはありませんが、
grep -sr '^.*\.(c|cpp|h)$' .
...少なくとも構文エラーを引き起こすべきではありません。
あなたはうまくいくべきです
grep -sr '\.(c|cpp|h)$' .
^.*