# /bin/csh
# $Header: compressdata,v 4.300 91/06/09 00:59:23 root Rel41 $
#	Copyright 1990 Sony Corp.
#	Copyright 1990 Performance Systems International Inc.
#       copyright 1988 NYSERNet, Inc.
#	All Rights Reserved.
#       wpc
#
source ../../config/report-env
if (-e $ROOT/config/daily-env) then
  source $ROOT/config/daily-env
else
  echo "$0 : daily-env missing. Can't continue. Exit."
  exit(1)
endif

if ($#argv >= 1) then
  set ext=$argv[1]
else
  echo "Usage: $0 mmddyy"
  exit(1)
endif

set nonomatch
compress -f $DATA/$ext/*
unset nonomatch

