#!/bin/bash # # Wrapper around firefox # if ! which firefox &> /dev/null; then echo "Please install firefox" exit 1 fi if [ ! -z "$1" ]; then firefox -p $1 -new-instance & else firefox --profilemanager -new-instance fi