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