Skip to content

Instantly share code, notes, and snippets.

@Fanna1119
Last active May 24, 2021 10:07
Show Gist options
  • Save Fanna1119/720fea70870590de4ffa813ab9f9412b to your computer and use it in GitHub Desktop.
Save Fanna1119/720fea70870590de4ffa813ab9f9412b to your computer and use it in GitHub Desktop.
handy linux commands
# 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