aktuelle.kurse/m122/tools-technics/README.md

36 lines
579 B
Markdown
Raw Normal View History

2022-05-24 13:49:44 +02:00
# m122
## Tools & Technics
### FTP
2022-06-03 12:01:08 +02:00
- [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/)
2022-05-24 13:49:44 +02:00
- HOST: ftp.haraldmueller.ch
- USER: schoolerinvoices
- PASS: Berufsschule8005!
2022-06-07 10:46:59 +02:00
*bash-Beispiel*
2022-06-07 10:51:25 +02:00
```
2022-06-07 10:46:59 +02:00
#!/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
2022-06-07 10:51:25 +02:00
```
2022-06-07 10:46:59 +02:00
### E-Mail