Skip to content

Commit beb5895

Browse files
committed
Unitech#3351 alias pm2 ls to pm2 ps
1 parent 7f0ee5e commit beb5895

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
- #3346 do not chmod systemd script (was failing systemd script on orange pi)
1515
- #3347 Add --wait-ip option to override systemd initialization to wait for internet full connectivity
1616
- #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)
1719

1820
## 2.8.0
1921

bin/pm2

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,12 @@ commander.command('l')
713713
pm2.list()
714714
});
715715

716+
commander.command('ps')
717+
.description('(alias) list all processes')
718+
.action(function() {
719+
pm2.list()
720+
});
721+
716722
commander.command('status')
717723
.description('(alias) list all processes')
718724
.action(function() {

0 commit comments

Comments
 (0)