added kernel name command
This commit is contained in:
parent
d41849e6f8
commit
275c50f0e9
2 changed files with 5 additions and 3 deletions
4
main.go
4
main.go
|
|
@ -65,7 +65,9 @@ func handlePrint(action, format string, rest string) {
|
|||
no, _ := strconv.Atoi(data.GetUptime())
|
||||
utils.CutePrint(data.FormatTime(no), format)
|
||||
case "hostname":
|
||||
utils.CutePrint(data.GetHostname(), format)
|
||||
utils.CutePrint(data.Unamebs("-n"), format)
|
||||
case "kernelname":
|
||||
utils.CutePrint(data.Unamebs("-s"), format)
|
||||
case "GPU":
|
||||
utils.CutePrint(data.GetGPU(), format)
|
||||
case "shell":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue