# HG changeset patch # User lcp # Date 793965289 -3600 # Node ID b162fe4ae444d22c21b8fe1ec43148298c47dd7a # Parent 49271bd72c42b22bc0c8f118252997980cf3269f Added initial /bin/csh line and comments diff -r 49271bd72c42 -r b162fe4ae444 src/Tools/runqed --- a/src/Tools/runqed Tue Feb 28 10:53:56 1995 +0100 +++ b/src/Tools/runqed Tue Feb 28 10:54:49 1995 +0100 @@ -1,6 +1,10 @@ -#!/bin/csh -foreach n (*ML) -qed $n $n:r.MLL -mv $n $n:r.bak -mv $n:r.MLL $n +#! /bin/csh +# $Id$ +# Run qed on all ML files in the current directory +foreach f (*ML) +echo Expanding shorthands in $f. \ Backup file is $f:r.bak +qed $f $f:r.MLL +mv $f $f:r.bak +mv $f:r.MLL $f end +echo Finished.