Work, rest and play

SSH commands I always forget

May 12th, 2008 Mark

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