Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document --appimage-extract-and-run #65

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/runtime/runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* as possible (one .c file) and use as few external dependencies
* as possible
*
* Copyright (c) 2004-22 Simon Peter
* Copyright (c) 2004-24 Simon Peter
* Portions Copyright (c) 2007 Alexander Larsson
* Portions from WjCryptLib_Md5 originally written by Alexander Peslyak,
modified by WaterJuice retaining Public Domain license
Expand Down Expand Up @@ -558,7 +558,11 @@ void print_help(const char* appimage_path) {
fprintf(stderr,
"AppImage options:\n\n"
" --appimage-extract [<pattern>] Extract content from embedded filesystem image\n"
" If pattern is passed, only extract matching files\n"
" If pattern is passed, only extract matching\n"
" files\n"
" --appimage-extract-and-run Temporarily extract content from embedded\n"
" filesystem image, run contained application,\n"
" then delete temporarily extracted content\n"
" --appimage-help Print this help\n"
" --appimage-mount Mount embedded filesystem image and print\n"
" mount point and wait for kill with Ctrl-C\n"
Expand Down
Loading