mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
12 lines
347 B
Bash
12 lines
347 B
Bash
|
#!/bin/bash
|
||
|
result=$(/bin/ps axo pid,user,pmem,rss,vsz,comm --sort -pmem,-rss,-vsz \
|
||
|
| head -n 15 \
|
||
|
| /usr/bin/awk 'NR>1 {print "{ \"pid\": " $1 \
|
||
|
", \"user\": \"" $2 \
|
||
|
"\", \"mem%\": " $3 \
|
||
|
", \"rss\": " $4 \
|
||
|
", \"vsz\": " $5 \
|
||
|
", \"cmd\": \"" $6 \
|
||
|
"\"},"}')
|
||
|
|
||
|
echo [ ${result%?} ]
|