aboutsummaryrefslogtreecommitdiff
path: root/devel/linux-understand_c/files/wrapper.sh
blob: 0e5b5ce2ca0151e89c80442a54e78fc263e2c4bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

PREFIX="%%PREFIX%%"
PROGRAM="${0}"

if [ ${#} -gt 1 ]
then
	shift
fi

exec ${PREFIX}/${PROGRAM##*/} ${*} &