#!/bin/bash
#
# run this script in the year/07 directory  to create links in the meeting/179
# directory.  Do not run this script after the meeting directory
# is 'done'.
#
filelist=`ls | grep -v makelinks`
for i in $filelist
do
  if [ -f ../../meeting/179/$i ]
  then
#     echo link $i already exists
    echo >/dev/null
  else
    echo file $i needs a link
    ln $i ../../meeting/179/$i
  fi
done
