Files
oracle/vdh/cnt_proc_per_user.sh

2 lines
111 B
Bash
Raw Permalink Normal View History

2026-03-12 21:23:47 +01:00
ps -ef | awk '{if (NR > 1) {users[$1]++}} END {for (user in users) { printf "%-20s %d\n", user, users[user]}}'