mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-26 03:32:12 +01:00
12 lines
284 B
Bash
12 lines
284 B
Bash
#!/bin/zsh
|
|
# ONOS developer ZSH profile conveniences
|
|
# Simply include in your own .zshrc
|
|
|
|
# Root of the ONOS source tree
|
|
export ONOS_ROOT=${ONOS_ROOT:-~/onos}
|
|
|
|
# Load bash_profile such that tab completion works
|
|
autoload bashcompinit
|
|
bashcompinit
|
|
. ${ONOS_ROOT}/tools/dev/bash_profile
|