FTP Up Down load: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
K (V verschob die Seite Ncftpput nach FTP Up Down load)
 
Zeile 20: Zeile 20:
 
== wget ==
 
== wget ==
 
<source lang=bash>
 
<source lang=bash>
  wget -m ftp://userftp@domain.tld/fileadmin  --password="XXXXXXXX"
+
$ wget -m ftp://userftp@domain.tld/fileadmin  --password="XXXXXXXX"
# oder
+
        # oder
  wget -m ftp://domain.tld/fileadmin --user="userftp" --password="XXXXXXXX"
+
$ wget -m ftp://domain.tld/fileadmin --user="userftp" --password="XXXXXXXX"
 
</source>
 
</source>

Aktuelle Version vom 29. Januar 2016, 09:41 Uhr

Upload

FTP Verzeichnisse Recursiv auf Server schieben:

ncftput

$ ncftpput -R -v -f ncftp.txt / VERZEICHIS

ncftp.txt

host domain.tld
user userftp
pass XXXXXXXX


Download

FTP Verzeichnisse Recursiv Runterladen

wget

$ wget -m ftp://userftp@domain.tld/fileadmin  --password="XXXXXXXX"
         # oder
$ wget -m ftp://domain.tld/fileadmin --user="userftp" --password="XXXXXXXX"