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
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
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
3 matches
Mail list logo