6 lines
118 B
Bash
6 lines
118 B
Bash
#!/bin/sh
|
|
|
|
FIREFOX="$(command -v firefox)"
|
|
[ -x "$FIREFOX.real" ] && exec "$FIREFOX.real" "$@"
|
|
|
|
exec firefox-esr "$@"
|