当前位置: 技术问答>linux和unix
linux系统下用编程实现关机
来源: 互联网 发布时间:2017-01-27
本文导语: 用C语言实现 | int main(int arg,char *argv[]) { execlp("shoutdonw","-h","now",char *)0); return 0; } | 执行命令: shutdown -h now 可能要root权限噢 | system(reboot)
用C语言实现
|
int main(int arg,char *argv[])
{
execlp("shoutdonw","-h","now",char *)0);
return 0;
}
{
execlp("shoutdonw","-h","now",char *)0);
return 0;
}
|
执行命令: shutdown -h now
可能要root权限噢
可能要root权限噢
|
system(reboot)