Wie werden Konfigurationsdateien in Bash Scripte eingebunden (include)
Hallo,
ich möchte in einem Bashscript eine Konfigurationsdatei einbinden. Zur Zeit tue ich dies wie folgt:
Inhalt der Datei config.conf:
#Konfigurationsdatei
SSH_PORT=22
HTTP_PORT=80
Inhalt des Bashscriptes:
#!/bin/sh
SSH_PORT=`cat config.conf | grep "SSH_PORT" | cut -c10-14`
HTTP_PORT=`cat config.conf | grep "HTTP_PORT" | cut -c11-15`
echo $SSH_PORT
echo $HTTP_PORT
Ausgabe:
22
80
Das liefert mir zwar genau die Ergebnisse, aber ich denke es gibt eine "effektivere" Methode dafür.
Kann mir jemand Helfen?
Danke.
ich möchte in einem Bashscript eine Konfigurationsdatei einbinden. Zur Zeit tue ich dies wie folgt:
Inhalt der Datei config.conf:
#Konfigurationsdatei
SSH_PORT=22
HTTP_PORT=80
Inhalt des Bashscriptes:
#!/bin/sh
SSH_PORT=`cat config.conf | grep "SSH_PORT" | cut -c10-14`
HTTP_PORT=`cat config.conf | grep "HTTP_PORT" | cut -c11-15`
echo $SSH_PORT
echo $HTTP_PORT
Ausgabe:
22
80
Das liefert mir zwar genau die Ergebnisse, aber ich denke es gibt eine "effektivere" Methode dafür.
Kann mir jemand Helfen?
Danke.
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 76513
Url: https://administrator.de/forum/wie-werden-konfigurationsdateien-in-bash-scripte-eingebunden-include-76513.html
Ausgedruckt am: 24.01.2025 um 00:01 Uhr
2 Kommentare
Neuester Kommentar