1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-27 16:15:27 +02:00
tldr/pages/linux/unzipsfx.md

25 lines
677 B
Markdown
Raw Normal View History

2022-10-30 17:50:13 +05:30
# unzipsfx
> Create a self-extracting compressed binary file by prepending self-extracting stubs on a Zip file.
2022-10-30 17:50:13 +05:30
> More information: <https://manned.org/unzipsfx>.
- Create a self-extracting binary file of a Zip archive:
2022-10-30 17:50:13 +05:30
`cat unzipsfx {{path/to/archive.zip}} > {{filename}} && chmod 755 {{filename}}`
- Extract a self-extracting binary in the current directory:
`{{./path/to/binary}}`
2022-10-30 17:50:13 +05:30
- Test a self-extracting binary for errors:
`{{./path/to/binary}} -t`
2022-10-30 17:50:13 +05:30
- Print content of a file in the self-extracting binary without extraction:
`{{./path/to/binary}} -c {{path/to/filename}}`
2022-10-30 17:50:13 +05:30
- Print comments on Zip archive in the self-extracting binary:
2022-10-30 17:50:13 +05:30
`{{./path/to/binary}} -z`