##
XY
YZ
YZ
BD
BD
GD
GD
ZX
####
XY
YZ
BD
GD
ZX
#!/usr/bin/perl
$arg1 = $ARGV[0];
@filelist = ` find /home/sites/$arg1/users -type d `;
chomp @filelist;
@store = ();
foreach $fle(@filelist)
{
($junk, $reqd )=split (/\/users\//,$fle);
($reqd, $junk) = split (/\//,$reqd);
push (@store,$reqd);
}