Michele Santuari
Committed by Gerrit Code Review

rsdoc for linux

Change-Id: I1e24a76c6c0447dca3308b26b1c0d76b1ff5dd73
......@@ -6,4 +6,9 @@
host=${1:-$OCI}
host=${host:-localhost}
open http://$host:8181/onos/v1/docs
unamestr=`uname`
if [[ "$unamestr" == 'Linux' ]]; then
xdg-open http://$host:8181/onos/v1/docs
else
open http://$host:8181/onos/v1/docs
fi
\ No newline at end of file
......