1
0
Fork 0
dotfiles/bin/ff

7 lines
142 B
Bash
Executable File

#!/bin/sh
PROFILEDIR=$(mktemp -d -p /tmp firefox-profile.XXXXX)
firefox --profile $PROFILEDIR --no-remote --new-instance
rm -rf $PROFILEDIR