diff options
author | Karl Berry <karl@freefriends.org> | 2010-06-13 18:05:48 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-06-13 18:05:48 +0000 |
commit | 43702a7e72ffe67628b405129a6241ce2d971f44 (patch) | |
tree | 2ae34931b2683493cabd178a0f12a22a7ee10412 /Build/source/texk/tetex | |
parent | 777df80e1aa24131060f34bcf95fa4676644b945 (diff) |
doc updates for 2010
git-svn-id: svn://tug.org/texlive/trunk@18938 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/tetex')
-rwxr-xr-x | Build/source/texk/tetex/fmtutil | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Build/source/texk/tetex/fmtutil b/Build/source/texk/tetex/fmtutil index cb3579971a9..a1be58baa5c 100755 --- a/Build/source/texk/tetex/fmtutil +++ b/Build/source/texk/tetex/fmtutil @@ -126,8 +126,10 @@ Valid commands for fmtutil: --version show version info --help show this message -The config file is named fmtutil.cnf, and +The default config file is named fmtutil.cnf, and running kpsewhich fmtutil.cnf should show the active file. +The command kpsewhich --engine=/ --all foo.fmt should show the +locations of any and all foo.fmt files. For more information about fmt generation in TeX Live, try tlmgr --help or see http://tug.org/texlive/doc/tlmgr.html. @@ -488,12 +490,13 @@ main() --test|--dolinks|--force) ;; "") break;; - *) abort "unknown option \`$1'. Try $progname --help for help";; + *) abort "unknown option \`$1'; try $progname --help if you need it";; esac do test $# -gt 0 && shift; done case "$cmd" in - help|"") help;; + "") abort "missing command; try $progname --help if you need it";; + help) help;; version) version;; esac |