Backup script sample

From vpsget wiki
Revision as of 16:49, 19 June 2013 by Vq (talk | contribs)
Jump to: navigation, search
#!/bin/bash
1echo "packing files in progress..."
2tar -cf /home/backup/root_lib-$(date +%H:%M-%d-%m-%y).tar /root/install.log /lib
dd if=/dev/vg-virt/kvm110_img | gzip | dd of=/home/backup/kvm110-$(date +%H:%M-%d-%m-%y).gz bs=4096
find /home/backup/ -type f -mtime +6 -exec rm {} \;
echo "completed"

Strings:
1Describes the language 2 Shows message "packing files in progress..." on the screen 3 ""