![]() ![]() | ![]() |
an improvement to my most used chameleon shell script. It just tests for mozilla binary if that is not found then it will launch netscape binary --pete
#!/bin/sh ARGS="-chrome chrome://theme_builder/content/install.xul" if test -r mozilla then ./mozilla $ARGS else ./netscape $ARGS fi