diff options
author | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-01-15 22:22:12 +0000 |
---|---|---|
committer | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-01-15 22:22:12 +0000 |
commit | 2b441faaf07c95abc69a53f78e66cc461551b42c (patch) | |
tree | 417dc4b8fd93602af53ab83bc973de76e455d8aa /Master/tlpkg/bin/tlpdb2container | |
parent | 82ce844c42877a4f07e898687e003e1d9aeb10c6 (diff) |
tlpdb2container: short options: -o = --outputdir
git-svn-id: svn://tug.org/texlive/trunk@6246 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tlpdb2container')
-rwxr-xr-x | Master/tlpkg/bin/tlpdb2container | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/tlpkg/bin/tlpdb2container b/Master/tlpkg/bin/tlpdb2container index 2f77dd4acc6..d346da7690e 100755 --- a/Master/tlpkg/bin/tlpdb2container +++ b/Master/tlpkg/bin/tlpdb2container @@ -30,11 +30,11 @@ my $opt_outputdir = "./archive"; my $opt_relative = 0; my $help = 0; -GetOptions("outputdir=s" => \$opt_outputdir, - "all!" => \$opt_all, - "debug!" => \$opt_debug, - "relative!" => \$opt_relative, - "help|?" => \$help) or pod2usage(1); +GetOptions("o|outputdir=s" => \$opt_outputdir, + "a|all!" => \$opt_all, + "d|debug!" => \$opt_debug, + "r|relative!" => \$opt_relative, + "h|help|?" => \$help) or pod2usage(1); pod2usage(-exitstatus => 0, -verbose => 2) if $help; |