summaryrefslogtreecommitdiff
path: root/devel/astah-community/files/mozilla
blob: 3d89ee8596568c1006ae068a3019ee839124ed71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

# eliminate own path from PATH (without this, cause a inifinite loop)
PATH=${PATH#$(dirname $0)}

# add your favorite browser in the top of the list
for browser in mozilla linux-mozilla firefox3 firefox linux-firefox firebird opera linux-opera
do
    type $browser > /dev/null 2>&1 && exec $browser "$@"
done