Ever wanted to look for the .netscape directories of everyone on a system? Simple enough if you know the right pieces to squish together. This is a great list for searching as input to File::Find.
my @dirs = grep -d, do {
my %list;
my @item;
$list{$item[7]}++ while @item = getpwent;
map "$_/.netscape", keys %list;
};