Hello again!
I have this piece od code:
##################### #lftp will make the backup lftp -u user,password -e "mirror --reverse --delete --only-newer --verbose /var/bkp /test_bkp" somehost.com >> $LOGFILE
# end log file date >> $LOGFILE echo "Backup Completo!" >> $LOGFILE #####################
Everything is fine, but the bash scrip dosn't complete after lftp upload all files... It hungs in: lftp user@somehost.com:~> how can I exit lftp and finish the bash?
Thx!