Updated 'ps' console command to put user name in second column

This commit is contained in:
Bryan Roe 2020-01-10 15:04:03 -08:00
parent 96455b8764
commit 8f041da307

View File

@ -2173,9 +2173,10 @@ function createMeshCore(agent) {
break;
}
case 'ps': {
processManager.getProcesses(function (plist) {
processManager.getProcesses(function (plist)
{
var x = '';
for (var i in plist) { x += i + ', ' + plist[i].cmd + ((plist[i].user) ? (', ' + plist[i].user) : '') + '\r\n'; }
for (var i in plist) { x += i + ((plist[i].user) ? (', ' + plist[i].user) : '') + ', ' + plist[i].cmd + '\r\n'; }
sendConsoleText(x, sessionid);
});
break;