File: run

package info (click to toggle)
munin 2.0.76-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,064 kB
  • sloc: perl: 11,684; java: 1,924; sh: 1,632; makefile: 636; javascript: 365; python: 267
file content (25 lines) | stat: -rwxr-xr-x 302 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

FINDBIN=$(cd -- "$(dirname "$0")" && pwd)
. "$FINDBIN/common.sh"


usage() {
    echo "Usage: $0 <NAME>"
    exit 1
}


if [ $# -eq 0 ]; then
    usage
fi


RUN=$(find "$DESTDIR" -name "$1" -type f -executable)
shift

if [ -z "$RUN" ]; then
    usage
fi

env "PERL5LIB=$PERLLIB" "$RUN" "$@"