version 1.8, 2002/11/26 15:25:21
|
version 1.9, 2002/12/03 21:37:08
|
Line 66 use HTML::TokeParser;
|
Line 66 use HTML::TokeParser;
|
my $usage=(<<END); |
my $usage=(<<END); |
**** ERROR ERROR ERROR ERROR **** |
**** ERROR ERROR ERROR ERROR **** |
Usage is for piml file to come in through standard input. |
Usage is for piml file to come in through standard input. |
1st is install, configinstall, or build |
1st argument is the category permissions to use (runtime or development) |
2st argument is the category permissions to use (runtime or development) |
2nd argument is the distribution (default,redhat6.2,debian2.2,redhat7.1,etc). |
3nd argument is the distribution (default,redhat6.2,debian2.2,redhat7.1,etc). |
3rd argument is to manually specify a targetroot |
4rd argument is to manually specify a targetroot |
|
|
|
The first 3 arguments are required for the program to run. |
Only the 1st argument is mandatory for the program to run. |
|
|
Example: |
Example: |
|
|
Line 82 END
|
Line 81 END
|
# ------------------------------------------------- Grab command line arguments |
# ------------------------------------------------- Grab command line arguments |
|
|
my $mode; |
my $mode; |
if (@ARGV>=3) { |
if (@ARGV==3) { |
$mode = shift @ARGV; |
$mode = shift @ARGV; |
} |
} |
else { |
else { |