Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google site




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 08-04-2006
inquirer's Avatar
inquirer inquirer is offline
Registered User
 

Join Date: Aug 2001
Posts: 79
file transfer the file using ftp then perform cat command to combine files


Code:
ftp -ivn << eof
open <ip address>
user <username> <password>
binary
get file1
bye
eof

cat file1 file2 > outfile