If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Unix Shell Scripts > Download files using shellscript

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-07-06, 01:18
ram2s2001 ram2s2001 is offline
Registered User
 
Join Date: Oct 2005
Posts: 17
Download files using shellscript

Hi,
iam new to shell script how to download files from one Linux box to other Linux box folder.

example :

Box1: folder---/home/test/*
Box2:folder---/home/download/


using FTP shellscript..?

Thanks lot.
Ram
Reply With Quote
  #2 (permalink)  
Old 02-07-06, 03:19
pdreyer pdreyer is offline
Registered User
 
Join Date: May 2005
Location: South Africa
Posts: 1,268
FTP in script

Use <<EOF on the ftp command. The shell input is read up to EOF

e.g.
ftp -nv hostn <<EOF
user xx xxpw
cd dir
get file
EOF
Reply With Quote
  #3 (permalink)  
Old 02-07-06, 04:14
ram2s2001 ram2s2001 is offline
Registered User
 
Join Date: Oct 2005
Posts: 17
Quote:
Originally Posted by pdreyer
Use <<EOF on the ftp command. The shell input is read up to EOF

e.g.
ftp -nv hostn <<EOF
user xx xxpw
cd dir
get file
EOF

How to do it from windows machine to unix machine..?

FOLDER IN WINDOWS: /test
Folder in unix: /home/location


how to download files from windows to unix box folder..

Thanks lot.
Reply With Quote
  #4 (permalink)  
Old 02-07-06, 08:40
pdreyer pdreyer is offline
Registered User
 
Join Date: May 2005
Location: South Africa
Posts: 1,268
ftp script for windows

You'll have to create an input file
Code:
C:\PetrusD>type ftpscript.bat
@echo off
echo user anonymous anonymous@unknown.com >c:\tmp\ftpcmd.txt
echo dir >>c:\tmp\ftpcmd.txt
echo quit >>c:\tmp\ftpcmd.txt
ftp -s:\tmp\ftpcmd.txt -vn ftp.microsoft.com
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On