• ベストアンサー

ディレクトリ名の検索方法が知りたい

例えば、"bin"を検索すると、"/usr/bin"、"/usr/local/bin"を表示するようなコマンドはありませんか?

質問者が選んだベストアンサー

  • ベストアンサー
  • auty
  • ベストアンサー率58% (284/486)
回答No.3

/usr/bin /usr/local/bin ... の形式を出力するだけなら、 find / -name "bin" -type d または find / -name "bin" -type d -print でよいと思います。

その他の回答 (3)

  • ops
  • ベストアンサー率52% (13/25)
回答No.4

こんにちは、 [root@tokyo init.d]# find / -name bin -print /bin /usr/bin /usr/share/locale/bin [root@tokyo init.d]# なんてどうでしょうか。 ======================== From Current RHCE

  • NNori
  • ベストアンサー率22% (377/1669)
回答No.2

find / -name "bin" -type d -ls で出力できませんか?

  • Tacosan
  • ベストアンサー率23% (3656/15482)
回答No.1

find(1) かな?