Last active
May 24, 2021 10:07
-
-
Save Fanna1119/720fea70870590de4ffa813ab9f9412b to your computer and use it in GitHub Desktop.
handy linux commands
This file contains 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
# command for burning to flash drive | |
sudo dd if=yourISO.iso of=/dev/sdb status=progress | |
# delete all node modules in dir | |
find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment