File: centrifuge

package info (click to toggle)
centrifuge 1.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 11,864 kB
  • sloc: cpp: 51,936; perl: 1,919; python: 1,538; makefile: 618; sh: 352
file content (16 lines) | stat: -rwxr-xr-x 312 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

exe=`basename $0`

export PATH=/usr/lib/centrifuge:$PATH

if [ -x /usr/lib/centrifuge/$exe ] ; then
  /usr/lib/centrifuge/$exe $@
else
  if [ -x /usr/lib/centrifuge/${exe}.pl ] ; then
    /usr/lib/centrifuge/${exe}.pl $@
  else
    echo "No binary $exe in dir /usr/lib/centrifuge/"
    exit 1
  fi
fi