#!/bin/sh
# Lists all loged in users.
echo "Hi $(w -h | awk '{print $1}' | uniq | tr '\n' ',' | sed 's/,/, /g' | sed 's/, $//')!"
