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.
「 」を使用してfind / -name xxxいましたが、ファイル名のみを検索します。
find / -name xxx
私が望むのはxxx、ファイルへのフルパスに " " を含む結果を含めることです。たとえば、パス " /data/xxx/somefile.txt" のファイルを結果に含めたいとします。
xxx
/data/xxx/somefile.txt
Android デバイスでこれを実現するにはどうすればよいですか?
find . -wholename "*xxx*"
または、そのような名前のディレクトリのみが必要な場合
find . -wholename "*/xxx/*"
@ Fivesheepのコメントはうまくいきました。