Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
517a4f93
Commit
517a4f93
authored
4 years ago
by
Nikias Bassen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plistutil: Improve usage text alignment
parent
56d6e121
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
plistutil.c
tools/plistutil.c
+4
-4
No files found.
tools/plistutil.c
View file @
517a4f93
...
@@ -48,10 +48,10 @@ static void print_usage(int argc, char *argv[])
...
@@ -48,10 +48,10 @@ static void print_usage(int argc, char *argv[])
name
=
strrchr
(
argv
[
0
],
'/'
);
name
=
strrchr
(
argv
[
0
],
'/'
);
printf
(
"Usage: %s -i|--infile FILE [-o|--outfile FILE] [-d|--debug]
\n
"
,
(
name
?
name
+
1
:
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
(
"Convert a plist FILE from binary to XML format or vice-versa.
\n\n
"
);
printf
(
" -i, --infile FILE
\t
Optional FILE to convert from or stdin if - or not used
\n
"
);
printf
(
" -i, --infile FILE
Optional FILE to convert from or stdin if - or not used
\n
"
);
printf
(
" -o, --outfile FILE
\t
Optional FILE to convert to or stdout 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]
\t\t
Force output format, regardless of input type
\n
"
);
printf
(
" -f, --format [bin|xml]
Force output format, regardless of input type
\n
"
);
printf
(
" -d, --debug
\t\t
Enable extended debug output
\n
"
);
printf
(
" -d, --debug
Enable extended debug output
\n
"
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment