- Mitglied seit
- 19. Aug 2008
- Beiträge
- 18.275
- Punkte für Reaktionen
- 4
- Punkte
- 0
Ich war mir ned sicher wo das reingehören könnte, drum habe ich es mal Offtopic gepostet. Es geht darum, dass ich mir ein Shell Script schreibe, welches Streamripper steuern soll. Ich muss sagen, dass ich keine Leuchte bin was Shell Scripte angeht Grundsätzlich funzt das Script aber als ich eine Prüfung der Usereingaben einbauen wollte blieb ich in einer Endlosschleife hängen und ich kann mir einfach nicht erklären warum...
egal was ich eingebe die Bedingung bleibt true. Kann es sein, dass die Prüfung auf einen Leerstring in einem Shellscript so ned funzt??
Folgendes habe ich dann auch mal probiert, aber geklappt hat's auch ned
Hat jemand einen Tipp für mich ?
Danke und Gruss
tobi
Code:
savePath=""
streamAddr=""
while [ $streamAddr=="" ]
do
echo "URL des Streams (http://domain.tld:PORT/path):"
read streamAddr
done
Folgendes habe ich dann auch mal probiert, aber geklappt hat's auch ned
Code:
savePath=0
streamAddr=0
while [ "$streamAddr"=="0" ]
do
echo "URL des Streams (http://domain.tld:PORT/path):"
read streamAddr
done
Danke und Gruss
tobi