LoginSignup
2
2

More than 5 years have passed since last update.

Mac & UNIX シェルで「.」とか「.DS_STORE」とか「.php」とか一定の法則のファイルを削除する方法

Posted at

シェルで、一定のファイルとかを削除する方法

Mac OS X システムファイルの .DS_Store と ._ ファイル

cd [希望のディレクトリ]
find . -name ".DS_Store" -delete; find . -name "._*" -delete

PHP拡張子のファイルとか

cd [希望のディレクトリ]
find . -name "*.php" -delete

おまけ: .DS_Store を作成しない設定

defaults write com.apple.desktopservices DSDontWriteNetworkStores true
killall Finder  // Finderの再起動コマンド

参考:

2
2
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
2
2