We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f0ee5e commit beb5895Copy full SHA for beb5895
CHANGELOG.md
@@ -14,6 +14,8 @@
14
- #3346 do not chmod systemd script (was failing systemd script on orange pi)
15
- #3347 Add --wait-ip option to override systemd initialization to wait for internet full connectivity
16
- #3348 alias pm2-docker to pm2-runtime
17
+- #3350 Override HOME and USER when setting --uid to start module or application
18
+- #3351 alias pm2 ps to pm2 ls (docker style)
19
20
## 2.8.0
21
bin/pm2
@@ -713,6 +713,12 @@ commander.command('l')
713
pm2.list()
714
});
715
716
+commander.command('ps')
717
+ .description('(alias) list all processes')
718
+ .action(function() {
719
+ pm2.list()
720
+ });
721
+
722
commander.command('status')
723
.description('(alias) list all processes')
724
.action(function() {
0 commit comments