# cd ~yaasita
expectを使って自動的にPCをシャットダウンさせる
2008/05/06 00:00
こんな感じで書くと良いですよ
WebからやりたいならPerlならsystem関数とかで呼べば良いんじゃないでしょうか
#!/usr/bin/expect
set timeout 10
spawn telnet 192.168.0.2
expect "login:"
send "root\n"
expect "Password:"
send "hogehoge\n"
send "shutdown -h now\n"
send "exit\n"
interact
Author
yaasita: SIerから脱出した人
GitHub
Qiita
X(twitter)
Tumblr
Zenn
Search
Categories
crack (24)
game (67)
hard (49)
life (74)
linux (351)
net (240)
program (185)
rule (29)
soft (426)
windows (59)
Archives
2007 (63)
2008 (119)
2009 (151)
2010 (122)
2011 (83)
2012 (71)
2013 (73)
2014 (88)
2015 (25)
2016 (23)
2017 (51)
2018 (32)
2019 (23)
2020 (18)
2021 (16)
2022 (17)
2023 (17)
2024 (16)
2025 (2)
RSS