8 lines
98 B
Bash
Executable file
8 lines
98 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
PROGRAM="$(basename "${0}")"
|
|
|
|
cd /usr/lib/geekbench
|
|
exec ./"${PROGRAM}" "${@}"
|