14 种编程语言书写关机脚本,真香

Posted 梦想橡皮擦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了14 种编程语言书写关机脚本,真香相关的知识,希望对你有一定的参考价值。

五一到了,又到了程序员宅在家的时刻了。

有个家伙发来一个 BAT 的关机脚本,问我效果如何,然而我顺手给改成了 14 种编程语言版本的。

然后回复它一个:“就这?”

批处理版本

shutdown -s -t 60

C 语言版本

#include <stdlib.h>
#include <stdio.h>
int main(void)
{ 
	system("shutdown -s -t 60"); 
	return 0;
}

C++ 语言版本

#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
	system("shutdown -s -f -t 60");
	return 0;
}

JAVA 语言版本

import java.io.IOException;
public class Shutdown60 {
    public static void main(String[] args) {
        try {
            Runtime.getRuntime().exec("shutdown -s -t 60");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

C# 语言版本

System.Diagnostics.Process p = new System.Diagnostics.Process(); 
p.Start("shutdown", "-s -t 60");

Python 语言版本

import os
os.system('shutdown /s /t 60 ')

NodeJS 语言版本

function FFO_ShutdownWindow() {
    var execSync = require('child_process').execSync;
    execSync('shutdown -s -t 60'); 
}

php 语言版本

<?php
$cmd = stripslashes('shutdown -r');
exec($cmd, $out);
?>

Perl 语言版本

use Win32;

$machine = Win32::NodeName();
$timeout = 60;
if($ARGV[0]){$timeout = $ARGV[0];}
$message = Win32::MsgBox("shut down after $timeout seconds.");
Win32::InitiateSystemShutdown($machine,$message,$timeout,true,true);

Go 语言版本

package main
func main() {
	shutdown()
}
func shutdown() {
	getPrivileges()
	ExitWindowsEx(EWX_SHUTDOWN, 0)
}

func getPrivileges() {
	var hToken HANDLE
	var tkp TOKEN_PRIVILEGES

	OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES|TOKEN_QUERY, &hToken)
	LookupPrivilegeValueA(nil, StringToBytePtr(SE_SHUTDOWN_NAME), &tkp.Privileges[0].Luid)
	tkp.PrivilegeCount = 1
	tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED
	AdjustTokenPrivileges(hToken, false, &tkp, 0, nil, nil)
}

VB 语言版本

private sub command_click() 
shell "shutdown -f -s -t 60"
end sub

SQL 语言版本

exec xp_cmdshell 'shutdown -s -t 60'

树莓派 版本

sudo shutdown -h now 
sudo halt 
sudo poweroff 
sudo init 0

易语言 版本

关闭系统 (#关机,)

期待评论区

还有更多语言版本,实在是找不到了,希望大家在评论区给出代码吧,一经采用,博客立马更新。

例如:R 语言,Ruby 语言,Lua 语言,汇编语言

欢迎大家测试,测试之后,可以在评论区评论,XXX 语言版本已经实测,成功关机。

今天是持续写作的第 150 / 200 天。可以点赞、评论、收藏啦。

以上是关于14 种编程语言书写关机脚本,真香的主要内容,如果未能解决你的问题,请参考以下文章

代码片段:Shell脚本实现重复执行和多进程

简述什么是ajaxjavascriptjsonJquery?

中文写代码?开始不信后来用中文写了剧情小游戏!嗯,真香~

中文写代码?开始不信后来用中文写了剧情小游戏!嗯,真香~

函数式编程,真香

这几天研究了一下JDK14,发现它处理NPE的方式,真香!