sonic-buildimage/platform/broadcom/docker-syncd-brcm/bcmsh
Qi Luo f3f8b9ff57
[syncd]: Add socat and bcmsh wrapper (#1657)
* [syncd]: Add socat and bcmsh wrapper
* Install socat in docker-base
* Add hint banner, add host wrapper
* Refine banner message
2018-05-04 09:27:01 -07:00

36 lines
632 B
Bash
Executable File

#!/bin/bash
usage="$(basename "$0") [-h] [-q] -- interactive shell for bcm service
where:
-h show this help text
-q quite, no banner (default: verbose)"
banner="Press Enter to show prompt.
Press Ctrl+C to exit.
"
# Default verbose
quiet=false
while getopts 'hq' option; do
case "$option" in
h) echo "$usage"
exit
;;
q) quiet=true
;;
\?) printf "illegal option: -%s\n" "$OPTARG" >&2
echo "$usage" >&2
exit 1
;;
esac
done
shift $((OPTIND - 1))
if [ "$quiet" = false ]; then
echo "$banner"
fi
/usr/bin/socat - UNIX-CONNECT:/var/run/sswsyncd/sswsyncd.socket