x
macOS端末を使用して特定のサブディレクトリ内のディレクトリを見つけたいのですが、わかりy
ませんy
。
このコマンドはfind / -type d -name "x"
検索には機能しますが、x
システムに指定されたディレクトリが多いため、そのディレクトリの下にディレクトリを見つける必要があります。x
x
y
私は努力しました -
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.