33 lines
621 B
Go
33 lines
621 B
Go
|
// +build linux
|
||
|
|
||
|
package common
|
||
|
|
||
|
import (
|
||
|
"strconv"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func CallLsof(invoke Invoker, pid int32, args ...string) ([]string, error) {
|
||
|
var cmd []string
|
||
|
if pid == 0 { // will get from all processes.
|
||
|
cmd = []string{"-a", "-n", "-P"}
|
||
|
} else {
|
||
|
cmd = []string{"-a", "-n", "-P", "-p", strconv.Itoa(int(pid))}
|
||
|
}
|
||
|
cmd = append(cmd, args...)
|
||
|
out, err := invoke.Command("/usr/bin/lsof", cmd...)
|
||
|
if err != nil {
|
||
|
return []string{}, err
|
||
|
}
|
||
|
lines := strings.Split(string(out), "\n")
|
||
|
|
||
|
var ret []string
|
||
|
for _, l := range lines[1:] {
|
||
|
if len(l) == 0 {
|
||
|
continue
|
||
|
}
|
||
|
ret = append(ret, l)
|
||
|
}
|
||
|
return ret, nil
|
||
|
}
|