22 Jun
2005
22 Jun
'05
17:30
On Wed, 22 Jun 2005 15:32:02 +0200 daniel parkes <.> wrote:
Yes i hav something like this, anything you can think of to make it look better?
#!/bin/bash TEMPDIR=/tmp FINALDIR=/root FILE=$1 cd $TEMPDIR wget -o /tmp/wget.ftp.log ftp://user:server@box/$FILE mv $FILE $FINALDIR
#!/bin/sh FILE=$1 FINALDIR=/root TEMPDIR=/tmp wget -p $TEMPDIR -o $TEMPDIR/wget.ftp.log ftp://user:server@box/$FILE mv $TEMPDIR/$FILE $FINALDIR