summaryrefslogtreecommitdiffstats
path: root/bridge/bin/bridge
blob: 33cf45779cbabd9b3745798c105e2c73ccfff5c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh
#
# Interface to the bridge commands.
#
# See commands below $bindir
#
set -euf

bindir="$(dirname $(readlink -f "$0"))/../lib/bridge/bin"
cmd="$bindir/$1"; shift

exec "$cmd" "$@"