summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2020-06-04 02:30:40 +0200
committerGravatar Martin Szulecki2020-06-04 02:30:40 +0200
commitd237e7125a6b19226598f4e53ae1455cff13f149 (patch)
tree0ea672bcd7b7a66b75e5f49fc0ff8b0cd29becb3 /tools
parent4a33d6033561e20227a28541683dfefe10c15c5b (diff)
downloadlibplist-d237e7125a6b19226598f4e53ae1455cff13f149.tar.gz
libplist-d237e7125a6b19226598f4e53ae1455cff13f149.tar.bz2
Unify plistutil usage output with other tools and add project URLs
Diffstat (limited to 'tools')
-rw-r--r--tools/plistutil.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/tools/plistutil.c b/tools/plistutil.c
index dbbfbf6..e439d13 100644
--- a/tools/plistutil.c
+++ b/tools/plistutil.c
@@ -49,13 +49,18 @@ static void print_usage(int argc, char *argv[])
{
char *name = NULL;
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 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("Usage: %s [OPTIONS] [-i FILE] [-o FILE]\n", (name ? name + 1: argv[0]));
+ printf("\n");
+ printf("Convert a plist FILE from binary to XML format or vice-versa.\n");
+ printf("\n");
+ printf("OPTIONS:\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(" -d, --debug Enable extended debug output\n");
printf("\n");
+ printf("Homepage: <" PACKAGE_URL ">\n");
+ printf("Bug Reports: <" PACKAGE_BUGREPORT ">\n");
}
static options_t *parse_arguments(int argc, char *argv[])