-
Bug
-
Resolution: Fixed
-
P4
-
1.2.2_015
-
tiger
-
generic
-
generic
"unzip" prints the messages
"extracting" or "inflating" when unzipping a zip file.
The jar command tried to copy this behavior, but it got the messages
reversed.
$ echo hi > hi
$ jar cMf hello.jar hi
$ jar xvf hello.jar
extracted: hi
$ unzip -o hello.jar
Archive: hello.jar
inflating: hi
$ jar c0Mf hello.jar hi
$ jar xvf hello.jar
inflated: hi
$ unzip -o hello.jar
Archive: hello.jar
extracting: hi
###@###.### 2003-05-08
"extracting" or "inflating" when unzipping a zip file.
The jar command tried to copy this behavior, but it got the messages
reversed.
$ echo hi > hi
$ jar cMf hello.jar hi
$ jar xvf hello.jar
extracted: hi
$ unzip -o hello.jar
Archive: hello.jar
inflating: hi
$ jar c0Mf hello.jar hi
$ jar xvf hello.jar
inflated: hi
$ unzip -o hello.jar
Archive: hello.jar
extracting: hi
###@###.### 2003-05-08