#!/bin/sh who | sort | awk '$5 !~ /^\(tmux/ { print $1 }' | \ xargs getent passwd | sort | uniq | \ awk -F: '{ printf("%s\t%s\n", $1, $5) }'