diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-11 23:53:35 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-11 23:53:35 +0000 |
commit | b8dc590cf15f41918fc7b8efa3ccc221f0f42db8 (patch) | |
tree | 621369960605b67628a1e154c3adf69bb860c2fc /Master/texmf-dist/source/latex/formula/newformula | |
parent | c74e838e31506c7de4132dc893621d9d0ce99f19 (diff) |
trunk/Master/texmf-dist/source/latex/formula
git-svn-id: svn://tug.org/texlive/trunk@299 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/formula/newformula')
-rw-r--r-- | Master/texmf-dist/source/latex/formula/newformula | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/formula/newformula b/Master/texmf-dist/source/latex/formula/newformula new file mode 100644 index 00000000000..d88fce3161c --- /dev/null +++ b/Master/texmf-dist/source/latex/formula/newformula @@ -0,0 +1,7 @@ +#!/bin/sh +cat $1 | \ + sed "s/atmath/formula/g" | \ + sed "s/atdiffdef/formuladiff/g" | \ + sed "s/atunitdef/formulaunit/g" | \ +cat > $1.$$ +mv $1.$$ $1 |