Artifact 014fb20cbb355ee584654c81e0be9606553ce9510a9104d68a2560aedd494720:
- Executable file
r38/doc/util/conv.pl
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 335) [annotate] [blame] [check-ins using] [more...]
open(FL,"r38.tmp") or die "r38.tmp not there\n"; open(FLO,">r38.tex"); while (<FL>) { s/ *$//g; # Remove trailing blanks. s/\t/ /g; # Convert tabs. s/\\begin{verbatim}/{\\small\\begin{verbatim}/; s/\\end{verbatim}/\\end{verbatim}}/; print FLO $_; } close FL; close FLO; exit(0);