Home | History | Annotate | Download | only in chromeos
      1 #!/bin/bash
      2 set -e -o pipefail
      3 
      4 # Run a command on the target ChromeOS device.
      5 #
      6 # Usage: target_sh <cmd> <args>...
      7 
      8 target="$1"
      9 shift
     10 
     11 ssh ${target} "$*"
     12