mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
9 lines
179 B
Bash
9 lines
179 B
Bash
#!/bin/sh
|
|
|
|
# Displays which PROCESSOR a pid is currently running on :)
|
|
|
|
/usr/bin/uptime
|
|
COLUMNS=80 ps axw -o pid,user,ni,%cpu,psr,%mem,args --sort -%cpu|head -n 22
|
|
/usr/bin/free
|
|
|