![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| listing files on remote server | vasuarjula | AIX | 3 | 06-02-2008 03:23 PM |
| rename files in remote server via ftp | dineshr85 | Shell Programming and Scripting | 4 | 02-20-2008 12:30 PM |
| delete files on a remote server | bond_bhai | UNIX for Advanced & Expert Users | 1 | 07-27-2007 07:19 AM |
| FTP multiple files from remote server to local server | berlin_germany | Shell Programming and Scripting | 2 | 12-20-2006 03:24 AM |
| copying files to a remote aix server using tar! | system-admin | AIX | 2 | 11-17-2006 03:30 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
I have to write a script in informatica, which is used to combine two remote flat filesLast edited by srinivasaraju.m; 08-01-2006 at 08:04 AM.. Reason: mistake in title |
|
||||
|
Thanks for ur reply
Hi
Thanks. Mean while i tried with the following script. Please let me know ur comments on this. Code:
FTPSVR=IP address FTPUSR=username FTPPWD=password FTPDIR=/dir path export FTPSRV FTPUSR FTPPWD FTPDIR ftp -n $FTPSVR << ! quote user $FTPUSR quote pass $FTPPWD cd $FTPDIR lcd /dir name get filename1 get filename2 bye The second script as, FTPSVR=IP address FTPUSR=username FTPPWD=password FTPDIR=/dir path export FTPSRV FTPUSR FTPPWD FTPDIR cd /tmp cat filename1 filename2 > filename3 ftp -n $FTPSVR << ! quote user $FTPUSR quote pass $FTPPWD cd $FTPDIR lcd /dir name put filename3 bye Last edited by blowtorch; 08-04-2006 at 03:33 AM.. Reason: add code tags |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|