#!/bin/csh -f
#
if ( x"$1" == x) then
  echo "Usage: $0 <username>"
  exit
endif
ls -lu `attach -p $1`/.cshrc | awk '{print $6,$7,$8}'
detach -q $1
