#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: dir2rep
# Creates a rep file for a directory
# P.J.Gawthrop Dec 1997
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 2000/12/28 12:26:45 peterg
## *** empty log message ***
##
## Revision 1.2 1998/03/11 10:32:11 peterg
## Now uses dir2paths transformation
##
## Revision 1.1 1998/02/05 13:31:25 peterg
## Initial revision
##
###############################################################
dotdot=$2 # Set to ../ if we are in MTT_work
# Inform user
echo "Creating $1_rep.txt (Directory version)"
# Headings
echo "% Verbal description for directory $1 ($1_rep.txt)"> $1_rep.txt
echo "% Generated by MTT on" `date`. >> $1_rep.txt
# Create paths for all valid examples - ie dir name is system name
dir2paths $1 $2 | sed 's/Introduction/AAAAA/g' | sort | sed 's/AAAAA/Introduction/g' | \
gawk '{
print "mtt -t -d " $1,$2 " rep tex";
}' >> $1_rep.txt