![]() |
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 |
| 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 |
| Executing application on Windows from Unix machine | MobileUser | UNIX for Dummies Questions & Answers | 3 | 07-12-2007 04:47 PM |
| Explor the Unix server on Windows Client machine | ziaullahk | IP Networking | 2 | 09-08-2006 08:01 PM |
| Identify a remote machine as windows or unix | u449064 | UNIX for Advanced & Expert Users | 5 | 08-05-2006 12:03 PM |
| missing Path(in UNIX) when i launch a job on to unix machine using windows SSh | megastar | UNIX for Advanced & Expert Users | 1 | 11-04-2005 07:36 AM |
| backup unix files from a windows machine | josramon | UNIX for Dummies Questions & Answers | 7 | 06-15-2004 02:44 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Maybe you could use curl to do it:
curl -v -T <filename> -u login assword ftp://ftp.ddd.com/ Curls is opensource and accesible from: http://curl.haxx.se/download.html |
|
||||
|
You can create batch file (.bat) and use the window's native FTP client to do a file transfer.. see below.
rem =========================== cd \windowsfolder echo open 192.168.0.254>autoxfer.txt echo user yourFTPUsername>>autoxfer.txt echo YourFTPPassword>>autoxfer.txt echo binary>>autoxfer.txt echo cd />>autoxfer.txt echo put FileName.exe>>autoxfer.txt echo quit>>autoxfer.txt ftp -v -n -s:autoxfer.txt |
|
||||
|
is there any way to write script without downloading the third party software?
I have a files on windows machine at \\Laoefr02\gigimstr$ and i want down load these files on unix machine at /users/home we need to do automatic process every night .please provide sample script for these functions. Thanks |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|