Ist zwar nicht mehr ganz aktuel:
Das Script mit Linux hab ich nicht ganz verstanden:
Und so sieht es aus für Linux User
bitte aber zuerst expect aus den Quellen Installieren
Code:
#!/usr/bin/expect
spawn /usr/bin/telnet
expect "telnet>" { send "open IpDerDS\n" }
expect "login:" { send "root\n" }
expect "Password:" { send "yourpassword\n" }
expect "DiskStation>" { send "poweroff\n" }
exit
Wo muss das hin und wie wird es aufgerufen?
Ich denke es sollte so aussehen:
#!/usr/bin/expect
spawn /usr/bin/telnet
expect "telnet>" { send "open IpDerDS\n" }
expect "login:" { send "root\n" }
expect "Password:" { send "yourpassword\n" }
expect "DiskStation>" { send "poweroff\n" }
interact #This hands control of the keyboard over two you (Nice expect feature!)
exit
exit
Ist es bei Linux nur ein Script?