9 lines
134 B
Bash
Executable File
9 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
|
|
top -n 1 | \
|
|
awk 'NR>4 { print $3 }' | \
|
|
tr -d ' ' | \
|
|
sort | \
|
|
uniq | \
|
|
grep -Ev "root|nginx|postfix|gitea|unrealir"
|