7 lines
142 B
Bash
Executable File
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
|