Giriş
Açıklaması şöyle.
Açıklaması şöyle.
Şöyle yaparız.
Açıklaması şöyle.
exit exits the current shell process.Örnek
Açıklaması şöyle.
Şöyle yaparız.Bash's exit status is the exit status of the last command executed in the script. If no commands are executed, the exit status is 0.
my_ip=$(resolve_ip) || exit
master_ip=$(resolve_ip "$hostname") || exit
if [ "$my_ip" = "$master_ip" ]; ...
ÖrnekŞöyle yaparız.
#!/bin/bash
if ...
then
...
else
exit 1
fi
Hiç yorum yok:
Yorum Gönder