11 lines
182 B
Bash
Executable file
11 lines
182 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -n "`which firefox`" ]; then
|
|
firefox
|
|
elif [ -n "`which iceweasel`" ]; then
|
|
iceweasel
|
|
elif [ -n "`which google-chrome`" ]; then
|
|
google-chrome
|
|
else
|
|
exit 1
|
|
fi
|