LoginSignup
3
3

More than 5 years have passed since last update.

Linux 同一名のファイルを一括削除

Last updated at Posted at 2015-11-09

findコマンドでファイルの削除

$ find . -name .DS_Store -delete

これで、現在のディレクトリのファイルを一括削除出来ます。(この場合、.DS_Storeという名前のファイルの一括削除です)

$ find . -name .DS_Store

これで、現在のディレクトリのファイルを検索出来ます。deleteオプションで削除が出来るということです。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3