diff options
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh b/Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh index 027a6157b77..6549506d486 100755 --- a/Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh +++ b/Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh @@ -1,4 +1,8 @@ #!/bin/sh +# +# ATTENTION: this file is more or less deprecated. +# Please take a look at the 'external' library which has been added to pgf. +# At the time of this writing, this library is only available for pgf cvs (newer than 2.00). TEX_FILE="" TEX_LOG_FILE="" @@ -58,7 +62,7 @@ function dumpHelp() { } -LONGOPTS="mainfile:,eps,driver:,texdefs:,warnonly" +LONGOPTS="mainfile:,eps,driver:,texdefs:,warnonly,help" SHORTOPTS="f:t:v" ARGS=`getopt -l "$LONGOPTS" "$SHORTOPTS" "$@"` if [ $? -ne 0 ]; then @@ -78,6 +82,7 @@ while [ $# -gt 0 ]; do --warnonly) shift; WARN_ONLY_IF_TEXFILE_DOESNOT_INCLUDE_TARGET=1;; -v) shift; VERBOSE_LEVEL=$((VERBOSE_LEVEL+1));; --) shift; break;; + --help) dumpHelp();; *) break; esac done |