mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-23 18:21:56 +01:00
ftp
This commit is contained in:
parent
01975ed3e6
commit
e566b10756
32
m122/LB_Einzelaufgabe_Projekt/README.md
Normal file
32
m122/LB_Einzelaufgabe_Projekt/README.md
Normal file
@ -0,0 +1,32 @@
|
||||
|
||||
### FTP
|
||||
|
||||
- [https://www.howtoforge.com/tutorial/how-to-use-ftp-on-the-linux-shell/](https://www.howtoforge.com/tutorial/how-to-use-ftp-on-the-linux-shell/)
|
||||
- HOST: ftp.haraldmueller.ch
|
||||
- USER: schoolerinvoices
|
||||
- PASS: Berufsschule8005!
|
||||
|
||||
*bash-Beispiel*
|
||||
´´´
|
||||
#!/bin/bash
|
||||
ftpHost="ftp.blaueierschwimmen.ch"
|
||||
ftpUser="schoolerinvoices"
|
||||
ftpPass="Berufsschule8005!"
|
||||
ftpDir="data"
|
||||
localDir="daten"
|
||||
|
||||
ftp -i $ftpHost << INPUTBLOCK
|
||||
quote USER $ftpUser
|
||||
quote PASS $ftpPass
|
||||
passive
|
||||
cd $ftpDir
|
||||
lcd $localDir
|
||||
mget *.*
|
||||
close
|
||||
bye
|
||||
INPUTBLOCK
|
||||
´´´
|
||||
|
||||
|
||||
### E-Mail
|
||||
|
Loading…
Reference in New Issue
Block a user