ftplinux pushes files_SSH under Linux uses FTP commands to upload files to another FTP space
If there is no ftp prompt: -bash: ftp: command not found Please install the ftp application first: yum install ftp #ftp 127.0.0.1 21 Enter the remote space FTP IP and port number , Enter Then enter the user name and password according to the prompt ! ftp>lcd local working directory ftp>cd remote directory ftp>binary uses binary transmission ftp> tick to turn on the byte counter during transmission , execute it again to turn it off ftp>mput file FTP> bye (or by) ends the session with the ftp command parameter in linux of the remote computer and exits the ftp command parameter in linux. FTP> cd Changes the working directory on the remote computer. FTP> get Copy the remote file to the local computer using the current file transfer type. Format :get remote-file [local-file] FTP >lcd Change the working directory on the local computer. By default, the working directory is the directory where the ftp command parameter in Linux is started. Format :lcd [directory] FTP>ls Displays an abbreviated listing of remote directory documents and subdirectories. FTP >mdelete deletes files on the remote computer. Format :mdelete remote-files […] Description :remote-files specifies the remote files to be deleted. FTP >mdir Display remote directory…