#3351 alias pm2 ls to pm2 ps

This commit is contained in:
Unitech 2017-12-12 15:41:49 +01:00
parent 5ad517be20
commit f83a8037f4
2 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,8 @@
- #3346 do not chmod systemd script (was failing systemd script on orange pi)
- #3347 Add --wait-ip option to override systemd initialization to wait for internet full connectivity
- #3348 alias pm2-docker to pm2-runtime
- #3350 Override HOME and USER when setting --uid to start module or application
- #3351 alias pm2 ps to pm2 ls (docker style)
## 2.8.0

View File

@ -713,6 +713,12 @@ commander.command('l')
pm2.list()
});
commander.command('ps')
.description('(alias) list all processes')
.action(function() {
pm2.list()
});
commander.command('status')
.description('(alias) list all processes')
.action(function() {