11 lines
155 B
Bash
Executable file
11 lines
155 B
Bash
Executable file
#!/bin/bash
|
|
set -e -o pipefail
|
|
|
|
# Run a command on the target ChromeOS device.
|
|
#
|
|
# Usage: target_sh <cmd> <args>...
|
|
|
|
target="$1"
|
|
shift
|
|
|
|
ssh ${target} "$*"
|