ops/etc/update-motd.d/31-envs-users-online

5 lines
191 B
Bash
Executable File

#!/bin/bash
printf 'users online: %s | total: %s\n' "$(users | tr ' ' \\n | uniq | wc -l)" "$(find /home -mindepth 1 -maxdepth 1 | wc -l)"
printf 'allocated ttys: %s\n\n' "$(users | wc -w)"