LoginSignup
3
3

More than 5 years have passed since last update.

シンボリックリンクが切れたファイルを削除する方法

Last updated at Posted at 2015-08-11

目的

シンボリックリンクが切れたファイルが複数出来上がったので,それらを一括で削除

環境

  • OS X Yosemite (10.10)
  • zsh 5.0.8

方法

シェルコマンドのパイプを使います.

shell
$ find -L . -type l | while read f; do
> rm "$f"
> done

参考

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