Last active
March 26, 2020 10:49
-
-
Save andreasonny83/14e1460e89461e509df308cef47f94da to your computer and use it in GitHub Desktop.
Find and delete bunch of files from terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find app/ -name '*.map' -exec sh -c 'rm "{}" ' \; # Remove all the .map files inside app/ | |
find . -name node_modules -exec rm -rf {} \; # Remove all node_modules from inside current folder and subfolders | |
ssh-add -L # Print Git ssh credentials | |
ssh-add ~/.ssh/id_rsa # Activate SSH credentials |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment