Skip to content

Instantly share code, notes, and snippets.

@liveashish
Last active August 29, 2015 14:10
Show Gist options
  • Save liveashish/e7381c07f146d61e0875 to your computer and use it in GitHub Desktop.
Save liveashish/e7381c07f146d61e0875 to your computer and use it in GitHub Desktop.
Collection of random imporant snippets
1.
****truncate foreign key constrained table****
SET FOREIGN_KEY_CHECKS = 0;
TRUNCATE table1;
SET FOREIGN_KEY_CHECKS = 1;
2.
**** Create SSH Key ****
ssh-keygen -t rsa -C "email@example.com"
3.
**** Copy a file to subdirectories ***
for d in */; do cp water.txt "$d"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment