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 {} \;
Go to list of users who liked
More than 5 years have passed since last update.
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 {} \;
Register as a new user and use Qiita more conveniently
Go to list of users who liked