プログラミング

【Shell/Bash】フォルダ・ファイルを探す方法

シェルでフォルダ・ファイルを探す方法を紹介します。

あのファイルどこに行ったっけ? あのディレクトリどこにあったっけ? という方にお勧めです。

フォルダの検索方法

/path/to/search 配下の testディレクトリを検索する

find /path/to/search -type d -name "text"

ファイルの検索方法

/path/to/search 配下の test.txt を検索する

find /path/to/search -type f -name "test.txt"

-プログラミング
-,