LoginSignup
1
1

More than 5 years have passed since last update.

指定ディレクトリ以下のシンボリック一括削除

Posted at

非常によく忘れるので備忘録。

シンボリック検索実行

$ cd "検索対象ディレクトリ" 
$ find . -type l  

シンボリック一括削除

$ find . -type l | perl -l0ne unlink

削除確認

$ find . -type l  
1
1
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
1
1