mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
4 lines
164 B
Fish
4 lines
164 B
Fish
function deleteNodeModules --description "Delete all node_modules folders in a folder and subfolders"
|
|
find . -name "node_modules" -type d -exec rm -rf '{}' +
|
|
end
|