blob: 43c5fac66573420e28b977bb0f4ff728bc2e9ea0 [file] [log] [blame]
#!/bin/bash
set -e -o pipefail
# Run a command on the target ChromeOS device.
#
# Usage: target_sh <cmd> <args>...
target="$1"
shift
ssh ${target} "$*"