LoginSignup
8
8

More than 5 years have passed since last update.

Macでリンク切れシンボリックリンクを削除する方法

Posted at

Linux系ではfind -xtype l -exec rmでできる。しかし、BSD系のfindには-xtypeがない。macOSでは次のコマンドを使う。

find -L . -type l -exec rm {} \;

なお、削除前に確認したいときは次のコマンドを実行する

# 削除予定のファイル一覧
find -L . -type l

# 削除予定のファイルのリンク先一覧
find -L . -type l -exec readlink {} \;
8
8
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
8
8