sonic-buildimage/platform/barefoot/sonic-platform-modules-bfn-newport/scripts/sensors

13 lines
183 B
Plaintext
Raw Normal View History

#!/bin/bash
DOCKER_EXEC_FLAGS="i"
# Determine whether stdout is on a terminal
if [ -t 1 ] ; then
DOCKER_EXEC_FLAGS+="t"
fi
docker exec -$DOCKER_EXEC_FLAGS syncd sensors "$@"