引数が多くて機能を把握できないfind。
でも大丈夫、zshがあればそんなの覚えなくても簡単!
- 現在のディレクトリ以下のPDFファイルを一覧する
ls **/*.pdf
- あるディレクトリ(dir1)以下にあるであろうファイル(func1.cpp)を探す
ls dir1/**/func1.cpp
- 現在のディレクトリ以下のソースファイルから特定の関数名を探す
grep "func1" **/*.cpp
- ゴミファイル(func.cpp~とかのバックアップファイル)を削除する
rm **/*~
Go to list of users who liked
More than 5 years have passed since last update.
引数が多くて機能を把握できないfind。
でも大丈夫、zshがあればそんなの覚えなくても簡単!
ls **/*.pdf
ls dir1/**/func1.cpp
grep "func1" **/*.cpp
rm **/*~
Register as a new user and use Qiita more conveniently
Go to list of users who liked