File Transfer Using GNULinux or Unix
File Transfer Using GNULinux or Unix
File Transfer Using GNULinux or Unix
there are many file transfer methods for both linux, unix and windows environments, but
i am going to focus on the command line programs on the linux and unix platforms.
windows users can use most of these if the command line programs are installed.
if you need to transfer files between your computer and a remote computer foo.com here
is what you should do..
my computer remote computer (foo.com)
current dir: /home/wolf/perl remote directory: /home/arul/backup
file to upload to foo.com: wolf.pdf =>
file to download from foo.com: arul.ps <=
also check out my shell script to automate file transfer using ftp.
to quit, type bye. this is just the basic file transfer using ftp. to check all the options using
ftp, type man ftp from your shell prompt.
wget
to download the index.html page of gnome.org, here is what you type.
wget http://www.gnome.org/index.html
... and you have the index.html page on your current directory :)
if you want to rip the website upto 3 levels,
wget -r -l 3 http://www.gnome.org
host='foo.com'
user='us3r'
passwd='p4ssword'
binary
cd /home/arul/backup
put wolf.pdf
get arul.ps
quit
arul