码迷,mamicode.com
首页 > 其他好文 > 详细

1.6 获取程序运行的pid

时间:2018-03-17 23:28:36      阅读:338      评论:0      收藏:0      [点我收藏+]

标签:var   .com   log   class   out   JD   roc   fun   int   

package main

import (
    "fmt"
    "os"
    "os/exec"
    "strconv"
)

func main() {

    pid := os.Getpid()
    fmt.Printf("Process PID: %d \n\n", pid)

    prc := exec.Command("ps", "-p", strconv.Itoa(pid), "-v")
    out, err := prc.Output()
    if err != nil {
        panic(err)
    }

    fmt.Println(string(out))

}

/*
./go_web 

Process PID: 4942

  PID STAT      TIME  SL  RE PAGEIN      VSZ    RSS   LIM     TSIZ  %CPU %MEM COMMAND
 4942 S      0:00.01   0   0      0 558433672   1452     -        0   0.0  0.0 /private/var/folders/tw/g0l_2m8s7y5690qqjdsvrzd00000gn/T/___go_build_b_go

*/

1.6 获取程序运行的pid

标签:var   .com   log   class   out   JD   roc   fun   int   

原文地址:https://www.cnblogs.com/zrdpy/p/8593086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!