Add option: -V --version

This commit is contained in:
2025-10-01 14:03:39 +02:00
parent 53f8aa343b
commit 0d5e6cd052
2 changed files with 17 additions and 5 deletions

View File

@@ -1,11 +1,15 @@
prefix = /usr/local prefix = /usr/local
bindir = $(prefix)/bin bindir = $(prefix)/bin
CFLAGS = -std=c99 -Wall -Wextra -pedantic CFLAGS = -std=c99 -Wall -Wextra -pedantic
VERSIONFALLBACK = "v1.2+"
VERSIONFLAGS = -DGIT_TAG=\"$(shell git describe --tags HEAD || echo $(VERSIONFALLBACK))\"
all: all:
$(CC) adhocify.c -g $(CFLAGS) -o adhocify $(CC) adhocify.c -g $(CFLAGS) $(VERSIONFLAGS) -o adhocify
release: release:
$(CC) adhocify.c $(CFLAGS) -o adhocify $(CC) adhocify.c $(CFLAGS) $(VERSIONFLAGS) -o adhocify
install: release install: release
install -D adhocify $(DESTDIR)$(bindir)/adhocify install -D adhocify $(DESTDIR)$(bindir)/adhocify

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2014-2024 Albert S. <adhocify@quitesimple.org> * Copyright (c) 2014-2025 Albert S. <adhocify@quitesimple.org>
* *
* Permission to use, copy, modify, and distribute this software for any * Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above * purpose with or without fee is hereby granted, provided that the above
@@ -515,7 +515,10 @@ static inline char *get_cwd()
void print_usage() void print_usage()
{ {
printf("adhocify [OPTIONS] command [arguments for command] - Monitor for inotify events and launch commands\n\n"); printf("adhocify [OPTIONS] command [arguments for command] - Monitor for inotify events and launch commands\n");
printf("Version: %s\n\n", GIT_TAG);
printf("--version, -V print version and exit\n");
printf("--daemon, -d run as a daemon\n"); printf("--daemon, -d run as a daemon\n");
printf("--path, -w adds the specified path to the watchlist\n"); printf("--path, -w adds the specified path to the watchlist\n");
printf("--logfile, -o path to write output of adhocify and stdout/stderr of launched commands to\n"); printf("--logfile, -o path to write output of adhocify and stdout/stderr of launched commands to\n");
@@ -540,6 +543,7 @@ static struct option long_options[] = {{"daemon", no_argument, 0, 'd'},
{"mask", required_argument, 0, 'm'}, {"mask", required_argument, 0, 'm'},
{"path", required_argument, 0, 'w'}, {"path", required_argument, 0, 'w'},
{"no-env", no_argument, 0, 'a'}, {"no-env", no_argument, 0, 'a'},
{"version", no_argument, 0, 'V'},
{"stdin", no_argument, 0, 's'}, {"stdin", no_argument, 0, 's'},
{"no-forkbomb-check", no_argument, 0, 'b'}, {"no-forkbomb-check", no_argument, 0, 'b'},
{"ignore", required_argument, 0, 'i'}, {"ignore", required_argument, 0, 'i'},
@@ -576,10 +580,14 @@ void parse_options(int argc, char **argv)
int option; int option;
int option_index; int option_index;
uint32_t optmask = 0; uint32_t optmask = 0;
while((option = getopt_long(argc, argv, "absdo:w:m:i:e::", long_options, &option_index)) != -1) while((option = getopt_long(argc, argv, "absdVo:w:m:i:e::", long_options, &option_index)) != -1)
{ {
switch(option) switch(option)
{ {
case 'V':
printf("%s\n", GIT_TAG);
exit(EXIT_SUCCESS);
break;
case 'd': case 'd':
daemonize = true; daemonize = true;
break; break;