Files
mercury/tools/cleanint
Zoltan Somogyi b221d25b52 <overview or general description of changes>
Estimated hours taken: 1

<overview or general description of changes>

<directory>/<file>:
	<detailed description of changes>
1996-05-13 05:10:23 +00:00

14 lines
231 B
Bash
Executable File

#!/bin/sh
# Print the names of .int and .int2 files in the current directory
# that do not have a .m file with the same name.
for file in *.int
do
if test ! -f `basename $file .int`.m
then
echo $file ${file}2
fi
done
exit 0