diff options
author | Karl Berry <karl@freefriends.org> | 2010-01-17 01:19:27 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-01-17 01:19:27 +0000 |
commit | 8e0605eedd66a39088ea1e55cadf9743a3df221c (patch) | |
tree | 1a8c096e5ab32f59922cdf76988dfc27dfa70e10 /Build/source | |
parent | e9c556bc3eb6743c9de6bd8cd63b56a55b029519 (diff) |
tweak help msgs
git-svn-id: svn://tug.org/texlive/trunk@16755 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/tetex/ChangeLog | 3 | ||||
-rwxr-xr-x | Build/source/texk/tetex/fmtutil | 11 | ||||
-rwxr-xr-x | Build/source/texk/tetex/updmap | 11 |
3 files changed, 17 insertions, 8 deletions
diff --git a/Build/source/texk/tetex/ChangeLog b/Build/source/texk/tetex/ChangeLog index ce53baa70d5..8f7948c66f6 100644 --- a/Build/source/texk/tetex/ChangeLog +++ b/Build/source/texk/tetex/ChangeLog @@ -1,5 +1,8 @@ 2010-01-17 Karl Berry <karl@tug.org> + * updmap, + * fmtutil: tweak help messages. + * tcfmgr (setupMap), * fmtutil (main), * updmap (setupCfgFile): maybe ls-R missing when basic config diff --git a/Build/source/texk/tetex/fmtutil b/Build/source/texk/tetex/fmtutil index 3a9159d9f9e..4c9b8f2eebe 100755 --- a/Build/source/texk/tetex/fmtutil +++ b/Build/source/texk/tetex/fmtutil @@ -1,6 +1,7 @@ #!/bin/sh # fmtutil - utility to maintain format files. # Public domain. Originally written by Thomas Esser. +# Run with --help for usage. # program history: # further changes in texk/tetex/ChangeLog. @@ -58,7 +59,7 @@ test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"' progname=fmtutil argv0=$0 -version=20091223.1047 +version='$Id$' cnf=fmtutil.cnf # name of the config file export PATH @@ -82,11 +83,11 @@ cleanup() ############################################################################### help() { - cat <<'eof' + cat <<eof +$version Usage: fmtutil [OPTION]... CMD [ARG]... -Rebuild, manage, and otherwise manipulate TeX formats (and Metafont -bases and MetaPost mems). +Rebuild and manage TeX formats (and Metafont bases and MetaPost mems). Valid options: --cnffile FILE @@ -116,6 +117,8 @@ Valid commands: The config file is named fmtutil.cnf, and running kpsewhich fmtutil.cnf should show the active file. + +Report bugs to <tex-k@tug.org>. eof cleanup 0 } diff --git a/Build/source/texk/tetex/updmap b/Build/source/texk/tetex/updmap index f81ae466f05..dad49741f05 100755 --- a/Build/source/texk/tetex/updmap +++ b/Build/source/texk/tetex/updmap @@ -1,10 +1,11 @@ #!/bin/sh -# updmap: utility to maintain map files for outline fonts. -# Thomas Esser. Public domain. +# updmap - utility to maintain map files for outline fonts. +# Public domain. Originally written by Thomas Esser. # Run with --help for usage. ############################################################################### # program history: +# further changes in texk/tetex/ChangeLog. # Sun May 25 21:05:32 CEST 2008 (Reinhard Kotucha) # add function symlink_or_copy needed by tl-portable. # Post-te retirement, now maintained in TeX Live; see @@ -104,7 +105,8 @@ version='$Id$' help() { cat <<eof -Usage: updmap [OPTION]... [COMMAND]... +$version +Usage: updmap [OPTION]... [COMMAND]... Update the default font map files used by pdftex, dvips, and dvipdfm, as determined by updmap.cfg (the one returned by running "kpsewhich @@ -164,6 +166,7 @@ eof (exit 0); exit } +# ############################################################################### # verboseMsg(msg) # print `msg' to stderr is $verbose is true @@ -1008,7 +1011,7 @@ processOptions() --help|-help|-h) help;; --version) - echo "$progname version $version."; (exit 0); exit 0;; + echo "$progname version $version"; (exit 0); exit 0;; "") break;; *) abort "$progname: unknown option \`$1'. Try $progname --help for help";; esac |