summaryrefslogtreecommitdiff
path: root/xtract
blob: ae4492978d1010bca34ce9c0896e94adc964b2b1 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
PATH=/bin:/usr/bin
export PATH
compiled=$0.`uname -s | sed -e 's/_NT-.*$/_NT/; s/^MINGW[0-9]*/CYGWIN/'`
if [ -x "$compiled" ]
then
    exec "$compiled" "$@"
else
    exec $0.pl -fallback "$@"
fi