Hi everybody,
is it possible to schedule a custom script (can't find crontab command from advanced shell) ?
Thanks
--Antonio P.
This thread was automatically locked due to age.
Hi everybody,
is it possible to schedule a custom script (can't find crontab command from advanced shell) ?
Thanks
--Antonio P.
I'm using an expect script running on my Linux box to reboot the XG nightly ... works well:
#!/usr/bin/expect -f
spawn ssh <XG IP> -l admin
expect "password:"
send "<Admin Password>\r"
expect "Select Menu Number \\\[0-7\\\]:"
send "7\r"
expect "Shutdown(S/s) or Reboot(R/r) Device (S/s/R/r): No (Enter) >"
send "r\r"
expect eof
exit