2 The run command runs a command remotely on a robot. 4 Copyright 2015 Fetch Robotics Inc. 10 from ..util
import ssh, add_user, add_robot, add_workspace
13 help_text =
"Run a command on the robot" 17 print "%s@%s$ %s" % (args.user, args.robot, args.command)
18 if ssh(args.user, args.robot,
19 "source "+args.remote_workspace+
"/devel/setup.bash && "+args.command) != 0:
20 print "ERROR: Command crashed" 28 parser.add_argument(
"command", action=
"store", default=
"bash",
29 help=
"Command and args to run remotely")