#!/bin/bash

# Wacky script for /etc/badfinger that gives a list of valid users.
# Don't use this if you want to keep secret your list of valid usernames!

echo User \"$1\" does not exist. Why not try:
cat /etc/passwd | cut -f1 -d ":" | sort | tr '\n' ' ' | fold -w 79 -s
echo
