xref: /aosp_15_r20/external/toolchain-utils/go/chromeos/target_sh (revision 760c253c1ed00ce9abd48f8546f08516e57485fe)
1#!/bin/bash
2set -e -o pipefail
3
4# Run a command on the target ChromeOS device.
5#
6# Usage: target_sh <cmd> <args>...
7
8target="$1"
9shift
10
11ssh -i ${HOME}/.ssh/testing_rsa ${target} "$*"
12