mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-27 12:11:57 +01:00
.. | ||
bewertungskriterien.txt | ||
M122_LB_Einzelaufgabe_Projekt(2.LJ-BIVO21).docx | ||
M122_LB_Einzelaufgabe_Projekt(2.LJ-BIVO21).pdf | ||
README.md |
FTP
- 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