![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| IP Networking Learn TCP/IP, Internet Protocol, Routing, Routers, Network protocols in this UNIX and Linux forum. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| 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 06:35 AM |
| File transfer between unix and windows server | Tlg13team | HP-UX | 2 | 02-08-2008 10:40 AM |
| Transfer files from Unix server to Windows using FTP | gjsaravanan | UNIX for Dummies Questions & Answers | 1 | 08-22-2005 07:55 PM |
| transfer of files via ftp from windows to unix | chambala5 | Shell Programming and Scripting | 1 | 11-09-2004 10:33 AM |
| Trying to transfer b/w Unix and Windows | dirtysparks | UNIX for Dummies Questions & Answers | 6 | 09-23-2003 01:59 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | 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 |
|
||||
|
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 |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|