2014-01-24

GSLUG has a server that's informally co-administered by several people. To assist with coordination I've added a simple notification to my shell profile:

# Notification of concurrent logins
if who | grep -qv "^$USER\b"; then
printf "[Notice] Other users are logged in:\n%s\n" "$(who | sed 's/^/\t/')"
fi