#!/bin/csh -f
cd $argv[1]
foreach dir (*)
  if (-d $dir) then
    fs sa $dir thm all
    echo set acl for $dir
    ~/scripts/dd $dir
  endif
end
