macOS端末を使用してサブディレクトリ内のディレクトリを検索する

macOS端末を使用してサブディレクトリ内のディレクトリを検索する

xmacOS端末を使用して特定のサブディレクトリ内のディレクトリを見つけたいのですが、わかりyませんy

このコマンドはfind / -type d -name "x"検索には機能しますが、xシステムに指定されたディレクトリが多いため、そのディレクトリの下にディレクトリを見つける必要があります。xxy

私は努力しました -

  • find / -type d -name "/y/x"または
  • find / -type d -name "y/x"または
  • find / -type d -name "../y/x"

しかし、これらは私に望む結果を与えません。

ベストアンサー1

デフォルトの使用-path:

find / -path '*y/x'
-path pattern
         True if the pathname being examined matches pattern.  Special shell pattern matching characters (``['', ``]'', ``*'', and ``?'') may be used as part of
         pattern.  These characters may be matched explicitly by escaping them with a backslash (``\'').  Slashes (``/'') are treated as normal characters and do
         not have to be matched explicitly.

おすすめ記事