diff options
Diffstat (limited to 'Master/texmf-dist/doc/metapost/featpost/bashscript/removeinputcommand.sh')
-rw-r--r-- | Master/texmf-dist/doc/metapost/featpost/bashscript/removeinputcommand.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/metapost/featpost/bashscript/removeinputcommand.sh b/Master/texmf-dist/doc/metapost/featpost/bashscript/removeinputcommand.sh new file mode 100644 index 00000000000..a1d41226431 --- /dev/null +++ b/Master/texmf-dist/doc/metapost/featpost/bashscript/removeinputcommand.sh @@ -0,0 +1,9 @@ +for a in *; do cp $a $a.NEW; done +for a in *.NEW +do + b=`basename $a .NEW` + sed -e '/%input featpost2D;/d' $a > $b +# echo $a ----- $b +done +rm *.NEW + |