swaymsg: Print usage and exit on unknown options

This commit is contained in:
Christoph Gysin 2015-11-28 16:09:19 +02:00
parent b235ccd212
commit 0d55d1a067
1 changed files with 11 additions and 0 deletions

View File

@ -30,6 +30,14 @@ int main(int argc, char **argv) {
{0, 0, 0, 0}
};
const char *usage =
"Usage: swaymsg [options] [message]\n"
"\n"
" -q, --quiet Be quiet.\n"
" -v, --version Show the version number and quit.\n"
" -s, --socket <socket> Use the specified socket.\n"
" -t, --type <type> Specify the message type.\n";
int c;
while (1) {
int option_index = 0;
@ -54,6 +62,9 @@ int main(int argc, char **argv) {
#endif
exit(EXIT_SUCCESS);
break;
default:
fprintf(stderr, "%s", usage);
exit(EXIT_FAILURE);
}
}