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