|
Replace FTP with SCP
Hi All,
I was using FTP for transferring files from remotemachine.
Code below:
# FTP for Customercare log
#*************************
cd $TRACKING_LOGDIR
ftp -n $CUSTCARE_SERVER << END_INPUT >> $TRACKING_LOGDIR/ftp_custcare.log 2>&1
user $CUSTCARE_USER $CUSTCARE_PWD
asc
cd $CUSTCARE_HOME
prompt
mget $CUSTCARE_LOG.* // getting all log files
mdelete $CUSTCARE_LOG.* // deleting the logfiles after getting
cd arch
mput $CUSTCARE_LOG.* // putting the logfiles to archive directory
bye
END_INPUT
Now i need to replace FTP with SCP.
I have SSH key/certificate authorization for login.
How can i replace the entire code by SCP?
Thanks and Regards,
|