blob: 4c56252eb59732e1d2fe39e50094c1426915873f [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 -i ${HOME}/.ssh/testing_rsa ${target} "$*"