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.
端末を使用してtxtファイルだけでなく、複数のファイルで「数字」のような単語を探しています。文字列を試してみました -r /media/E016-5484/* | grep numbers しかし、それでも機能しません。
名前に file_pattern を含むすべてのファイルで 1234 を探しているとしましょう
grep 1234 ` find . -name "*file_pattern*"`
また
find . -name "*file_pattern*" -exec grep 1234 {} \;