Introduction
There are times, when sharing files using email as attachment is not possible, and then one of the best ways is to put those files in a FTP server, of course, it is even better to put all of them in a zip file, but the other end does not usually do that.
So, if you have a full folder structure you need to download using some recursive download tool, you have some options, one of them
Using Wget With FTP To Download/Move Web Sites Recursively
Sometimes you need to move a web site from one server to another.
Instead of downloading the web site from the old server to your PC via
FTP and uploading it from your PC to the new server, it would save a lot
of time to simply copy the web site from one server to the other.
I use wget to download things(most are zip files) automatically for me during night.
but sometimes at morning I find that a few files connot be unzipped.
Possible Duplicate:
How to download specific files from some url path with wget
I want to download pdf files from this site.
I tried wget -r -l 1 http://www.mimuw.edu.pl/~mengel/SO/Cwiczenia/, but this download all page structure...
Is there way like downloading from ftp server: wget ftp://www.site.domain/*.pdf?
I am trying to recursively download the contents of a particular directory (via http from a web server) using wget.
I am tasked with trying to find a way to download zipped logs from a remote server. There are quite a bit of these logs and they are constantly created.
I do have limited ssh access to the remote server and can scp or rsync the files.
However, due to the sheer size of these logs file, I do not want to rsync all of them.
Introduction
wget is a wonderful tool, specially when you need to download files on remote servers / machines.
I have encountered a small issue with SCP (and also rsync). I need to copy certain files from server A (running SunOS 5.8) to server B (running SunOS 5.10).
hello,
i am trying to get a list of files to be scped from the remote server
by running the below in my local unix server ( note - there is a passwordless connectivity setup made between the local and remote server) and, we use KSH.
---
Code:
ssh $scp_host "find /a/b/c/*/ -iname "$remote_file"" > list.dat
the above pulls all the files that matches the pattern fro