6 lines
86 B
Bash
6 lines
86 B
Bash
#!/bin/sh
|
|
|
|
PREFIX="%%PREFIX%%"
|
|
PROGRAM="${0}"
|
|
|
|
exec ${PREFIX}/${PROGRAM##*/} "${@}" &
|