unzipsfx: add page (#9225)

pull/1/head
NikhilSS 2022-10-30 17:50:13 +05:30 committed by GitHub
parent aa5621f443
commit b22fd9ff59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages/linux/unzipsfx.md Normal file
View File

@ -0,0 +1,24 @@
# unzipsfx
> Create a self-extracting compressed binary file by prepending self-extracting stubs on a `zip` file.
> More information: <https://manned.org/unzipsfx>.
- Create a self-extracting binary file of a `zip` archive:
`cat unzipsfx {{path/to/archive.zip}} > {{filename}} && chmod 755 {{filename}}`
- Extract a self-extracting binary in the current directory:
`{{./path/to/binary)}}`
- Test a self-extracting binary for errors:
`{{./path/to/binary)}} -t`
- Print content of a file in the self-extracting binary without extraction:
`{{./path/to/binary)}} -c {{path/to/filename}}`
- Print comments on `zip` archive in the self-extracting binary:
`{{./path/to/binary)}} -z`