how to restore the dump file using shell scripting
I have created a script file to dump the application files using the following script
Code
=============
#!/bin/bash
#Full Day Backup Script
#application folders backup
now=$(date +"%d-%m-%Y")
#use 1 instead of 0 which is incremental backup
dump -0f $now /var/www/html/*
=============
using this we can successfully dumped the application files.
Now i want to restore the dumpfile
How can i restore using shell script?
please help
Thanx in advance
|
Recent comments
11 hours 25 min ago
14 hours 20 min ago
15 hours 34 min ago
16 hours 58 min ago
18 hours 36 min ago
20 hours 4 min ago
21 hours 18 min ago
1 day 13 hours ago
1 day 14 hours ago
1 day 17 hours ago