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
No related posts.


Leave a Reply