### 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/) **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