feat(fish): add some of my often used functions

This commit is contained in:
Stefan Imhoff
2022-12-31 11:17:53 +01:00
parent 8609f8f6d7
commit ded5962d24
5 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
function deleteNodeModules --description "Delete all node_modules folders in a folder and subfolders"
find . -name "node_modules" -type d -exec rm -rf '{}' +
end