| # ----------------------------------------------------------------------------- |
| # Executes selected set of ONOS commands using the batch mode. |
| # ----------------------------------------------------------------------------- |
| $(basename $0) [node] <commands> |
| - [node] <commands> : node to run <commands> |
| Executes selected set of ONOS commands using the batch mode. |
| <commands> is a comma-separated list of ONOS CLI commands. |
| If [node] isn't specified, the defualt target becomes \$OCI. When no commands |
| are specified, the commands 'summary','intents','flows', and 'hosts' are |
| [ "$1" = "-h" ] && _usage && exit 0 |
| [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 |
| . $ONOS_ROOT/tools/build/envDefaults |
| commands="${2:-summary,intents,flows,hosts}" |
| echo "$commands" | tr ',' '\n' > $aux |