Enviado em 01/09/2018 - 10:39h
Alguem poderia me ajudar a descobrir porque a linha 7 não é iniciada
link para o script completo https://github.com/tuxrx/dumplayer/blob/master/gplayer
0 echo -n "Start dumPlayer [y/n] "
1 read play
2 i=0
3 if [ "$play" == "y" ];then
4 farefox dumP.html 2> /dev/null
5 if [ $? -ne 0 ];then
6 google-crome-stable dumP.html 2> /dev/null
7 elif [ $? -ne 0 ];then
8 echo "What is the name of your browser? "
9 read browser
10 $browser dumP.html 2> /dev/null
11 while [ $? -ne 0 ];do
12 echo "What is the name of your browser? "
13 read browser
14 $browser dumP.html 2> /dev/null
15 done
16 fi
link para o script completo https://github.com/tuxrx/dumplayer/blob/master/gplayer