oldstyle numbers

Karsten Tinnefeld tinne@noether.cs.uni-dortmund.de
Wed, 8 Dec 1999 12:15:03 -0500



> > > I use miktex, which does not allow the, er, simple argument style to
> > > pltotf, etc.  is 

> > This is bourne shell "sh" style syntax. To get a working shell for Windows 
> > (that can do more things than command.com or cmd.exe under nt, no, that 
> > *can* do things instead of), install cygwin that comes with a bash
> > (an extended "sh"), see
> >   http://sourceware.cygnus.com/cygwin/
> 
> that's exactly what I use.  what I wonder is:  will the above invocation
> pass the correct arguments to pltotf and vptovf?

Write a shell script to find out:
----8<---
#!/bin/bash # echoargs.sh
echo "$@"
----8<---

for f in *.pl
do
    echo "With parameter »$f«:"
    path/to/echoargs.sh $f `basename $f .pl`.tfm
done

Read the man page bash(1) for more about parameter processing.
-- 
Karsten Tinnefeld                       tinnefeld@ls2.cs.uni-dortmund.de
Fachbereich Informatik, Lehrstuhl 2                   T +49 231 755-4737
Universität Dortmund, D-44221 Dortmund, Deutschland   F +49 231 755-2047