gitの.gitignoreのミスとかそんな感じの理由で、Linuxサーバ上に大量の.DS_Storeが配置されてしまいました。
以下のコマンドでまとめて削除することができました。
find . -name .DS_Store -exec rm -fr {} \;
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
gitの.gitignoreのミスとかそんな感じの理由で、Linuxサーバ上に大量の.DS_Storeが配置されてしまいました。
以下のコマンドでまとめて削除することができました。
find . -name .DS_Store -exec rm -fr {} \;
Register as a new user and use Qiita more conveniently
Go to list of users who liked