diff options
author | B. Watson <yalhcru@gmail.com> | 2020-05-02 17:18:37 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-05-02 17:18:37 +0700 |
commit | 0350cdbfb98198bc385d8dea193a502268e0acd4 (patch) | |
tree | 93d4b9762ccc4159d1202c37c93421a71d36981e /system/isextract/isextract.rst | |
parent | 30ceb8604c66686e2c052f2decf3492c2c461356 (diff) |
system/isextract: Added (extract v3 InstallShield files).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/isextract/isextract.rst')
-rw-r--r-- | system/isextract/isextract.rst | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/system/isextract/isextract.rst b/system/isextract/isextract.rst new file mode 100644 index 0000000000000..aaa4622681841 --- /dev/null +++ b/system/isextract/isextract.rst @@ -0,0 +1,74 @@ +.. RST source for isextract(1) man page. Convert with: +.. rst2man.py isextract.rst > isextract.1 +.. rst2man.py comes from the SBo development/docutils package. + +.. |version| replace:: 20141107_5adb0af +.. |date| date:: + +.. converting from pod: +.. s/B<\([^>]*\)>/**\1**/g +.. s/I<\([^>]*\)>/*\1*/g + +========= +isextract +========= + +--------------------------------- +Extract InstallShield v3 archives +--------------------------------- + +:Manual section: 1 +:Manual group: SlackBuilds.org +:Date: |date| +:Version: |version| + +SYNOPSIS +======== + +isextract [*l|x*] file.z + +DESCRIPTION +=========== + +isextract is a command line tool to extract the .z InstallShield v3 +packages many old windows games were distributed as. + +The files isextract supports normally have a **.z** extension, and can be +idenfified by the file command: + +:: + + $ file data.z + data.z: InstallShield Z archive Data + +...or by the hex signature at the start of the file: + +:: + + $ head -c6 data.z | xxd + 00000000: 135d 658c 3a01 .]e.:. + +OPTIONS +======= + +**l** List contents of archive. + +**x** Extract archive to current directory. + +COPYRIGHT +========= + +See the file /usr/doc/PRGNAM-|version|/LICENSE for license information. + +AUTHORS +======= + +isextract was written by OmniBlade. + +This man page written for the SlackBuilds.org project +by B. Watson, and is licensed under the WTFPL. + +SEE ALSO +======== + +unshield(1), cabextract(1) |