Centos FTP command not found : Linux FTP install

install ftp on linux centos

FTP command not found # ftp 192.168.1.56 -bash: ftp: command not found # yum -y install ftp The above command will install the ftp client package on your CentOS server. If you use a proxy server for internet access,

File transfer in Linux : FTP in linux : Shell script to file trnsfer

linux file transer script

This script use to transfer file from linux to ftp server. You can automate this file transfer by putting this file in cronjob also. #!/bin/sh HOST=’ftp.users.qwest.net’ USER=’yourid’ PASSWD=’yourpw’ FILE=’file.txt’ ftp -n $HOST <<END_SCRIPT quote USER $USER quote PASS $PASSWD put $FILE quit END_SCRIPT exit 0  Please note that : Using the -n option on the ftp client … Read more