metalllike
Grünschnabel
HIMMEL!! wie lange braucht man und das alles zu lesen?! naja werde ich aber wohl nicht drum herum kommen.deepthroat hat gesagt.:Wie gesagt solltest du dir ruhig mal die Handbücher bzw. den Advanced Bash-Scripting Guide zu Gemüte führen.
ich habs jetzt in etwa so gelöst
Code:
while :
do
echo "What domain (whith tld you will add (cencel by pressing c):?"
read line # read: Zeile von StdIn einlesen
case "$line" in
[cC]|[cC]encel) echo "Cenceled" exit
break;;
*) echo "The domain $line will now add to your System!"
touch /var/lib/named/master/$line
===schnipp
Bearbeitung des scripts und server restart und dann
while :
do
echo "Would you like to add another domain:? y/n"
read line # read: Zeile von StdIn einlesen
case "$line" in
[nN]|[nN]o) echo "Finish"
break;;
[yY][yY]es) #hier zu zeile echo "What domain (whith tld you will add (cencel by pressing c):?" und weiter machen
break;;
esac
done
Zuletzt bearbeitet: