#! /bin/sh

# Collect all .userinfos on the machine

/etc/pu -d'%u\t%h' | sort | while read user home
do
	userinfo=$home/.userinfo

	if [ -r $userinfo ]
	then
		echo ===== $user =====
		cat -v $userinfo
	fi
done

# enough =s to be as long as a user line with a 3-letter name
echo ===============

exit 0
