#! /bin/csh
# execute the count* stats scripts...
# 93 -- by DL -- v1.2b
# usage : allcounts userlogfile
if ( $#argv != 1 ) then 
	echo "usage : ./allcounts userlogfile"; exit 1
endif
foreach cmd ("countusers  " "counthosts  " "countdusers " countdomains)
  echo -n "$cmd :"
  ./$cmd $1
end
