diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2013-04-07 12:20:48 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2013-04-07 12:20:48 +0200 |
| commit | 3f65e3042b2dac350f05dbb49665f535d3e18d71 (patch) | |
| tree | 2db525bf7972c8b640aa6fe8ba88d8550d9af863 /src/cgg.c | |
| parent | ddadb157cfa3e1658f120341b4085ec5421ff73f (diff) | |
| download | cataract-3f65e3042b2dac350f05dbb49665f535d3e18d71.tar.xz | |
Tweak commandline arguments description
Be more illustrative by highlighting the arguments.
Diffstat (limited to 'src/cgg.c')
| -rw-r--r-- | src/cgg.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -58,15 +58,15 @@ parse_cmd (int argc, char *argv[]) static GOptionEntry entries[] = { { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL }, - { "source", 's', 0, G_OPTION_ARG_STRING, &source_dir, "Specifies a path to source structure", NULL }, - { "output", 'o', 0, G_OPTION_ARG_STRING, &dst_dir, "Generate files to the specified directory instead of current", NULL }, + { "source", 's', 0, G_OPTION_ARG_STRING, &source_dir, "Specifies PATH to the source structure", "PATH" }, + { "output", 'o', 0, G_OPTION_ARG_STRING, &dst_dir, "Generate files to the specified directory instead of current", "DIR" }, { "jobs", 'j', 0, G_OPTION_ARG_INT, &jobs, "Allow N jobs at once" #ifdef HAVE_G_GET_NUM_PROCESSORS " (default=autodetect)", #else " (default=1)", #endif - NULL }, + "N" }, { "update", 'u', 0, G_OPTION_ARG_NONE, &update, "Update the output structure", NULL }, { "fullsize", 'f', 0, G_OPTION_ARG_NONE, &fullsize, "Override the nofullsize switch and generate full gallery", NULL }, { "debug-dont-strip-unused-tags", 0, 0, G_OPTION_ARG_NONE, &dont_strip_unused_tags, "Don't strip unused/unknown template tags", NULL }, |
