#!/bin/bash FTP=”/usr/bin/ncftpput” CMD=”" AUTHFILE=”/root/.myupload” if [ -f $AUTHFILE ] ; then # use the file for auth CMD=”$FTP -m -R -f $AUTHFILE $myf $remotedir $localdir” else echo “*** To terminate at any point hit [ CTRL + C ] ***” read -p “Enter ftpserver name : ” myf read -p “Enter ftp username : ” [...]
