#!/bin/sh
# Lists all users
echo "User number $(cat /etc/passwd | awk -F: '{print $1}' | wc -l )!"
