| #------------------------------------------------------------------------------- |
| # Test utility to spawn an iTerm window for monitoring logs of current cell. |
| #------------------------------------------------------------------------------- |
| nodeCount=$(env | egrep "^OC[0-9]+" | wc -l | tr -d ' ') |
| tell application \"iTerm\" |
| set cellName to \"$cellName\" |
| set paneCount to $nodeCount |
| set theTerm to (create window with default profile) |
| launch session \"Default\" |
| set name to \"ONOS Log 1\" |
| write text \"cell \" & cellName |
| write text \"oi 1 && clear && echo Node \$OCI && ol\" |
| repeat with thePane from 2 to paneCount |
| tell application \"System Events\" to keystroke \"D\" using command down |
| set name to \"ONOS Log \" & thePane |
| write text \"cell \" & cellName |
| write text \"oi \" & thePane & \" && clear && echo Node \$OCI && ol\" |
| tell application \"System Events\" to keystroke \"I\" using command down |