Tag: dump
Import All MySQL Sql Dumps in a Folder
December 1, 2008
This command will import all the MySQL sql dumps in the current folder. You can use this to restore your…
Get the Plain Text Version of a Web Page
June 2, 2008
This command fetches a web page, converts it to text and shows it. lynx -dump http://www.example.com/
Restore Backup Created by dump
May 10, 2008
Restoring a backup created by the dump command. restore -if home_backup.bak
Incremental Backup using dump
April 30, 2008
Make a incremental backup of directory ‘/home/binnyva’ dump -1aj -f home.bak /home/binnyva/
Backup Using ‘dump’ command
April 28, 2008
Make a full backup of directory ‘/home’ dump -0aj -f home.bak /home
MySQL Database Backup/Restore
March 17, 2007
This command can be used to backup MySQL database. mysqldump -u <User> -p <Database name> [<Table name>] > backup.sql This…
Recent Comments