blob: f85dcf301f87a3392052c44040e7496f68d7e083 [file] [log] [blame]
tomac77d762014-09-18 19:59:42 -07001#!/bin/bash
2#-------------------------------------------------------------------------------
tom1a2908c2014-09-23 16:37:39 -07003# ONOS remote command-line client.
tomac77d762014-09-18 19:59:42 -07004#-------------------------------------------------------------------------------
5
Pavlin Radoslavov4b154072014-10-15 10:49:23 -07006[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
toma6bc21b2014-09-30 09:39:02 -07009[ "$1" = "-w" ] && shift && onos-wait-for-start $1
10
tomac77d762014-09-18 19:59:42 -070011[ -n "$1" ] && OCI=$1 && shift
toma6bc21b2014-09-30 09:39:02 -070012client -h $OCI "$@" 2>/dev/null