Work, rest and play

SSH commands I always forget

Copy file from one domain to another in the absence of wget

curl http://www.domain.co.uk/file.tar -o file.tar

Dump DB to file

mysqldump -u [username] -p [db_name] > db.sql

Import DB dump into new database

mysql -u [username] -p [dbname] < db.sql

Leave a Reply

You must be logged in to post a comment.