#!/bin/sh
# Lists all users
echo "Users $(cat /etc/passwd | awk -F: '{print $1}' | tr '\n' ',' | sed 's/,/, /g' | sed 's/, $//')!"
