Skip to content

Commit

Permalink
plistutil: Improve usage text alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
nikias committed May 24, 2020
1 parent 56d6e12 commit 517a4f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/plistutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ static void print_usage(int argc, char *argv[])
name = strrchr(argv[0], '/');
printf("Usage: %s -i|--infile FILE [-o|--outfile FILE] [-d|--debug]\n", (name ? name + 1: argv[0]));
printf("Convert a plist FILE from binary to XML format or vice-versa.\n\n");
printf(" -i, --infile FILE\tOptional FILE to convert from or stdin if - or not used\n");
printf(" -o, --outfile FILE\tOptional FILE to convert to or stdout if - or not used\n");
printf(" -f, --format [bin|xml]\t\tForce output format, regardless of input type\n");
printf(" -d, --debug\t\tEnable extended debug output\n");
printf(" -i, --infile FILE Optional FILE to convert from or stdin if - or not used\n");
printf(" -o, --outfile FILE Optional FILE to convert to or stdout if - or not used\n");
printf(" -f, --format [bin|xml] Force output format, regardless of input type\n");
printf(" -d, --debug Enable extended debug output\n");
printf("\n");
}

Expand Down

0 comments on commit 517a4f9

Please sign in to comment.