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.
Linuxでは、名前が。とは異なるすべてのファイルを検索したいと思いますmyName。正規表現を使用しようとしていますが、機能しません。
myName
find . -type f -name '*(?<!myName)*'
私のエラーはどこにありますか?
ありがとう。
これはうまくいきますか?
find . -type f ! -name '*myName*'