jpeginfo icon indicating copy to clipboard operation
jpeginfo copied to clipboard

MAN page

Open trypy opened this issue 2 years ago • 1 comments

Maybe add MAN page to github for potential edits

I see in code --check returns three possible values.

Maybe note this in MAN page and/or --help text

const char *check_status_str(int check) { switch (check) { case 1: return "OK"; case 2: return "WARNING"; case 3: return "ERROR"; }

return "";

}

trypy avatar Sep 03 '23 17:09 trypy