tjko / jpeginfo

jpeginfo - prints information and tests integrity of JPEG/JFIF files
http://www.iki.fi/tjko/projects.html
GNU General Public License v3.0
139 stars 17 forks source link

MAN page #19

Open trypy opened 10 months ago

trypy commented 10 months ago

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 "";

}

tjko commented 9 months ago

Man page is included in the repository: https://github.com/tjko/jpeginfo/blob/master/jpeginfo.1

I added note about the exit code in the man page (https://github.com/tjko/jpeginfo/commit/6bcb601dd063102d4654f2724681cdd156561c1e)