Example #1
0
 public static CpuUsage profile()
 {
     return(CpuUsage.parse("sar 1 4".Bash().Split("\n").ToList()));
 }
Example #2
0
 public static CpuUsage parse(string str)
 {
     return(CpuUsage.parse(str.Split('\n').ToList()));
 }