From 91e4c893024c096e30cf16b9fc91c45db67a450f Mon Sep 17 00:00:00 2001 From: "romuald@libnfc.org" Date: Sun, 23 Sep 2012 10:35:37 +0000 Subject: [PATCH] Enhance usage information. --- src/mfcuk.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mfcuk.c b/src/mfcuk.c index 3d9aee3..7c76ab0 100644 --- a/src/mfcuk.c +++ b/src/mfcuk.c @@ -773,11 +773,15 @@ void print_usage(FILE *fp, const char * prog_name) fprintf(fp, "\tExample -P 0x5c72325e:0x50829cd6:0xb8671f76:0xe00eefc9:0x4888964f would find key FFFFFFFFFFFF\n"); fprintf(fp, "-p proxmark3_full.log - tries to parse the log file on it's own (mifarecrack.py based), get the values for option -P and invoke it\n"); fprintf(fp, "-F - tries to fingerprint the input dump (-i) against known cards' data format\n"); + fprintf(fp, "-v verbose_level - verbose level (default is O)\n"); fprintf(fp, "\n"); fprintf(fp, "Usage examples:\n"); fprintf(fp, " Recove all keys from all sectors:\n"); fprintf(fp, " %s -C -R -1\n", prog_name); + + fprintf(fp, " Recove the sector #0 key with 250 ms for all delays (delays could give more results): \n"); + fprintf(fp, " %s -C -R 0 -s 250 -S 250\n", prog_name); return; }