Last active
December 17, 2015 01:49
-
-
Save robertmarsal/5531544 to your computer and use it in GitHub Desktop.
Linux Cheat Sheet
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
--- | |
Compression | |
--- | |
# Create folder.tar.bz2 from folder | |
tar -cvjf folder.tar.bz2 folder/* | |
--- | |
Mysql | |
--- | |
# Dump selected table | |
mysqldump -u xxxx -p -h xxxx database table > table.sql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment