#!/bin/sh -e

echo "Software packages in home directories"
for i in tar.gz tgz zip deb; do
	find /home/ -type f -name "*.$i"
done
