summaryrefslogtreecommitdiffstats
path: root/tools/idevicecrashreport.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/idevicecrashreport.c')
-rw-r--r--tools/idevicecrashreport.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/idevicecrashreport.c b/tools/idevicecrashreport.c
index 5d2e21d..8600ad1 100644
--- a/tools/idevicecrashreport.c
+++ b/tools/idevicecrashreport.c
@@ -302,14 +302,18 @@ static void print_usage(int argc, char **argv)
302 302
303 name = strrchr(argv[0], '/'); 303 name = strrchr(argv[0], '/');
304 printf("Usage: %s [OPTIONS] DIRECTORY\n", (name ? name + 1: argv[0])); 304 printf("Usage: %s [OPTIONS] DIRECTORY\n", (name ? name + 1: argv[0]));
305 printf("Move crash reports from device to a local DIRECTORY.\n\n"); 305 printf("\n");
306 printf("Move crash reports from device to a local DIRECTORY.\n");
307 printf("\n");
308 printf("OPTIONS:\n");
306 printf(" -e, --extract\t\textract raw crash report into separate '.crash' file\n"); 309 printf(" -e, --extract\t\textract raw crash report into separate '.crash' file\n");
307 printf(" -k, --keep\t\tcopy but do not remove crash reports from device\n"); 310 printf(" -k, --keep\t\tcopy but do not remove crash reports from device\n");
308 printf(" -d, --debug\t\tenable communication debugging\n"); 311 printf(" -d, --debug\t\tenable communication debugging\n");
309 printf(" -u, --udid UDID\ttarget specific device by UDID\n"); 312 printf(" -u, --udid UDID\ttarget specific device by UDID\n");
310 printf(" -h, --help\t\tprints usage information\n"); 313 printf(" -h, --help\t\tprints usage information\n");
311 printf("\n"); 314 printf("\n");
312 printf("Homepage: <" PACKAGE_URL ">\n"); 315 printf("Homepage: <" PACKAGE_URL ">\n");
316 printf("Bug Reports: <" PACKAGE_BUGREPORT ">\n");
313} 317}
314 318
315int main(int argc, char* argv[]) 319int main(int argc, char* argv[])