LoginSignup
2
1

More than 1 year has passed since last update.

任意のディレクトリ以下のnode_modulesをまとめて削除する

Last updated at Posted at 2022-09-25

使っていないnode_modulesを削除して容量削減したいとき用のメモ

任意のディレクトリ以下のnode_modulesを見つける

$ find . -name 'node_modules' -type d -prune 

あとは、削除するなりzipに固めるなりお好きに

#削除する
$ find . -name 'node_modules' -type d  -prune | awk '{print "rm -rf", $0}' | sh
2
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
2
1