特定のケースでは、1) 2) 名前を知っているディレクトリを探している場合、これを試してみませんか:
find . -name "octave" -type d
find ./path/to/directory -iname "test" -type d
これは、大文字と小文字を区別しない検索で -iname を使用してディレクトリ名を見つけるのに非常に便利であることがわかりました。 「テスト」は検索語です。
使ってみてください
find $path -type d
?
現在のディレクトリ
find . -type d
find . -mindepth 1 -maxdepth 1 -type d