File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ export class PsProcessParser {
111111 // Note that comm on Linux systems is truncated to 16 characters:
112112 // https://bugzilla.redhat.com/show_bug.cgi?id=429565
113113 // Since 'args' contains the full path to the executable, even if truncated, searching will work as desired.
114- public static get psLinuxCommand ( ) : string { return `ps - axww -o pid=,comm=${ PsProcessParser . commColumnTitle } ,args=` ; }
115- public static get psDarwinCommand ( ) : string { return `ps - axww -o pid=,comm=${ PsProcessParser . commColumnTitle } ,args= -c` ; }
114+ public static get psLinuxCommand ( ) : string { return `ps axww -o pid=,comm=${ PsProcessParser . commColumnTitle } ,args=` ; }
115+ public static get psDarwinCommand ( ) : string { return `ps axww -o pid=,comm=${ PsProcessParser . commColumnTitle } ,args= -c` ; }
116116
117117 // Only public for tests.
118118 public static ParseProcessFromPs ( processes : string ) : Process [ ] {
You can’t perform that action at this time.
0 commit comments