On Thu, Apr 21, 2005 at 10:43:50AM -0500, Adam Maloney wrote:
> for USER in `ls /home`; do chown $USER /home/$USER; done
> 
> You might want to do:
> for USER in `ls /home`; do echo "chown $USER /home/$USER"; done
> 
> first to make sure the command looks good.
> 

Ok, so this is way better than mine.  I just learned cut the other day
and had it stuck in my head :)  

(even thoguh Adam forgot to chown -R)

dan