Difference between revisions of "Use the ftp command"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
(link to parent topic)
Line 6: Line 6:
  
 
= See also =
 
= See also =
 +
* [[ftp]]
 
* [http://man-wiki.net/index.php/1:ftp ftp's man page]
 
* [http://man-wiki.net/index.php/1:ftp ftp's man page]

Revision as of 11:46, 13 March 2012

  • upload a file via ftp:
ftp -p -u ftp://user:password@server/path file
  • download a file via ftp:
ftp -p -d ftp://user:password@server/path/file

See also