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
d417d386
Commit
d417d386
authored
Jun 05, 2020
by
Nikias Bassen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plistutil: Add new "--version" option to output version information
parent
e64fbba3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
plistutil.c
tools/plistutil.c
+6
-0
No files found.
tools/plistutil.c
View file @
d417d386
...
...
@@ -58,6 +58,7 @@ static void print_usage(int argc, char *argv[])
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
(
" -v, --version Print version information
\n
"
);
printf
(
"
\n
"
);
printf
(
"Homepage: <"
PACKAGE_URL
">
\n
"
);
printf
(
"Bug Reports: <"
PACKAGE_BUGREPORT
">
\n
"
);
...
...
@@ -123,6 +124,11 @@ static options_t *parse_arguments(int argc, char *argv[])
free
(
options
);
return
NULL
;
}
else
if
(
!
strcmp
(
argv
[
i
],
"--version"
)
||
!
strcmp
(
argv
[
i
],
"-v"
))
{
printf
(
"plistutil %s
\n
"
,
PACKAGE_VERSION
);
exit
(
EXIT_SUCCESS
);
}
else
{
printf
(
"ERROR: Invalid option '%s'
\n
"
,
argv
[
i
]);
...
...
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