Re: Need help/feedback on backup script

2000-10-29 Thread Krzys Majewski
FWIW, here's mine. -chris #!/bin/sh VOLUME=/zip DISK=1 _pre() { printf "Make sure your ZIP drive is plugged in.\n" printf "Press when ready, or 'quit' to quit " read ANSWER if [ "${ANSWER}" = "quit" ]; then exit 0 fi sudo modprobe imm cd / } _post() { su

Re: Need help/feedback on backup script

2000-10-29 Thread kmself
on Sat, Oct 28, 2000 at 10:49:16PM -0400, Jesse Goerz ([EMAIL PROTECTED]) wrote: > I've created a backup script and would like some feedback/help on it. > Any tips or pointers would be greatly appreciated. Feel free to > use/hack it on your own. Comments inline. Not bad, but not how I'd do thing

Need help/feedback on backup script

2000-10-29 Thread Jesse Goerz
I've created a backup script and would like some feedback/help on it. Any tips or pointers would be greatly appreciated. Feel free to use/hack it on your own. here it is: <-- Begin Script --> #!/bin/bash # Many thanks to Robb Kidd who brought up the question of backup # strategies on the Debi