summaryrefslogtreecommitdiff
path: root/pbs.in
blob: 2c977b74722e42a1cc40914c62206aab31ac2588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

if [[ -z $PBS_PATH ]]; then
	export PBS_PATH=@pbs-bindir@
fi

export PATH="$PBS_PATH:$PATH"

if [[ $# < 1 ]]; then
	pbs-help
	return 1
fi
pbs-"$@"