7 lines
133 B
Bash
7 lines
133 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# Get the default robot's hostname
|
||
|
|
robotHost=`jibo robot-list|grep '*'|awk '{print \$3 }'`;
|
||
|
|
|
||
|
|
open http://$robotHost:4444/
|