#!/bin/sh # # Shell script to start Mozilla Firefox. # # Do not reset the user profile on a detected browser downgrade: export MOZ_ALLOW_DOWNGRADE=1 # then go ahead and crank-er up cd /usr/lib64/firefox if [ -z "$1" ]; then ./firefox& else ./firefox "$1"& fi exit 0