Using ftp to transfer files
Ftp is a protocol for transfering files between systems.
It is system-independant, meaning you can use it on any system. It is most
easily used on this system with the command ncftp. Just follow the
steps outlined below.
To get a file called filename, type:
ncftp>> get filename
To get multiple files --- file1.ps, file2.c,
file3.CC,
then type:
ncftp>> mget file*.*
To send a file called filename, type:
ncftp>> put filename
To send multiple files --- file1.ps, file2.c,
file3.CC,
then type:
ncftp>> mput file*.*