به وسیله این shell میتوانید بک آپ چندین کاربر را به راحتی Restore کنید.

 

#!/bin/bash

BACKUPS=$(ls -al /home/*.gz |awk ‘{print $9}’)

for i in $BACKUPS do echo “Restoring $i now….” /scripts/restorepkg $i done