![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | 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 here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| reverse of basename | braindrain | Shell Programming and Scripting | 7 | 10-02-2006 11:24 PM |
| Reverse Proxy | dipanrc | Linux | 0 | 12-27-2005 06:05 AM |
| string in reverse | malaymaru | Shell Programming and Scripting | 4 | 10-18-2005 08:32 AM |
| Could not reverse map address | nadav | UNIX for Dummies Questions & Answers | 2 | 08-05-2005 10:23 AM |
| Reverse * | azmathshaikh | Shell Programming and Scripting | 2 | 04-26-2005 04:40 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Reverse FTP
Hi Everybody,
I want to write a script in unix which will automatically FTP a .txt file from my client machine D: drive(Windows) That is I want to FTP a file from my PC to UNIX box but this should be done from UNIX box by a shell script. (i.e. I will invoke the script in UNIX and FTP will be done) Let me know if I have made this clear ? Any help would be appreciated. |
| Forum Sponsor | ||
|
|
|
|||
|
For that on our systems, we have a .netrc (do man on netrc to see what the file format is) that has the machine/user/password information in there.
If you don't have that capability - put the user id/password in the script as the first line after the ftp user <userid> <userpassword> # to do the logon the remote machine good luck |