代码拉取完成,页面将自动刷新
package main
//Usage: go run install.go
//Ladon Scanner for golang
//Author: k8gege
//K8Blog: http://k8gege.org/Ladon
//Github: https://github.com/k8gege/LadonGo
import (
"fmt"
"runtime"
"os/exec"
"os"
)
func PathExists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return false, err
}
func main() {
fmt.Println("Install to System")
pwd, _ := os.Getwd()
LadonPath:=""
//fmt.Println(pwd)
if runtime.GOOS!="windows" {
LadonPath="/usr/local/bin/Ladon"
cmd :=exec.Command("/bin/sh","-c","go build -o "+LadonPath+" "+pwd+"/Ladon.go")
cmd.Run()
} else if runtime.GOOS=="windows" {
LadonPath="C:\\Windows\\System32\\Ladon.exe"
cmd :=exec.Command("cmd","/c","go build -o "+LadonPath+" "+pwd+"\\Ladon.go")
cmd.Run()
}
exist, _ := PathExists(LadonPath)
if exist{
fmt.Println("Done!")
}else{
fmt.Println("Fail!")
fmt.Println("Admin is needed")
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。