156 Linux Applications on pSeries
Examples
The following example will copy all files and directories, logging in as user (-u)
root with the password (-p) root, from /local/data on the host w2 to the
/w2/local/data directory on the system where the command was issued from:
ncftpget -R -u root -p root w2 /w2/local /local/data
Note that the local directory is between the remote host (w2) and the remote
directory specification (/local/data) in the example above. The next example uses
another form to specify the same remote host and directory, but will download to
the current directory.
cd /w2/local && ncftpget -R -u root -p root ftp://w2/local/data
6.2.5 wget
The WGET package provides a file retrieval utility which can use either the HTTP
or FTP protoco ...