![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| IP Networking Questions involving TCP/IP, Routers, Hubs, Network protocols, etc go here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| transfer file from unix to windows on same PC | monika | UNIX for Dummies Questions & Answers | 4 | 05-28-2008 03:35 AM |
| File transfer between unix and windows server | Tlg13team | HP-UX | 2 | 02-08-2008 06:40 AM |
| Transfer files from Unix server to Windows using FTP | gjsaravanan | UNIX for Dummies Questions & Answers | 1 | 08-22-2005 04:55 PM |
| transfer of files via ftp from windows to unix | chambala5 | Shell Programming and Scripting | 1 | 11-09-2004 06:33 AM |
| Trying to transfer b/w Unix and Windows | dirtysparks | UNIX for Dummies Questions & Answers | 6 | 09-23-2003 10:59 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
How to Transfer a whole Directory from unix to windows using FTP?
Hi
I can transfer a single file and multiple file from unix to widows using get and mget command.But i dont know How to transfer a whole directory from unix to windows using command. pls help me Ramkumar |
| Forum Sponsor | ||
|
|
|
|||
|
One way for a single-level directory (no sub-directories - you have to send a tarball for that)
Code:
filenames= $( find /path -print |\ while read $file do echo "put $file" done ) ftp -nv<<EOF open winnode user $username $password ASC $files bye EOF |
|||
| Google The UNIX and Linux Forums |