mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Add general info in help
This commit is contained in:
parent
dd240bfc34
commit
321a618192
7
nnn.c
7
nnn.c
|
@ -133,6 +133,7 @@ disabledbg()
|
||||||
|
|
||||||
/* Macro definitions */
|
/* Macro definitions */
|
||||||
#define VERSION "1.4"
|
#define VERSION "1.4"
|
||||||
|
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
|
||||||
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
#define LEN(x) (sizeof(x) / sizeof(*(x)))
|
||||||
#undef MIN
|
#undef MIN
|
||||||
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
||||||
|
@ -1714,7 +1715,7 @@ show_help(char *path)
|
||||||
dprintf(fd, "\nVolume: %s of ", coolsize(get_fs_free(path)));
|
dprintf(fd, "\nVolume: %s of ", coolsize(get_fs_free(path)));
|
||||||
dprintf(fd, "%s free\n", coolsize(get_fs_capacity(path)));
|
dprintf(fd, "%s free\n", coolsize(get_fs_capacity(path)));
|
||||||
|
|
||||||
dprintf(fd, "\n");
|
dprintf(fd, "\nVersion: %s\n%s\n", VERSION, GENERAL_INFO);
|
||||||
close(fd);
|
close(fd);
|
||||||
|
|
||||||
exitcurses();
|
exitcurses();
|
||||||
|
@ -2695,9 +2696,7 @@ optional arguments:\n\
|
||||||
-S start in disk usage analyzer mode\n\
|
-S start in disk usage analyzer mode\n\
|
||||||
-v show program version and exit\n\
|
-v show program version and exit\n\
|
||||||
-h show this help and exit\n\n\
|
-h show this help and exit\n\n\
|
||||||
Version: %s\n\
|
Version: %s\n%s\n", VERSION, GENERAL_INFO);
|
||||||
License: BSD 2-Clause\n\
|
|
||||||
Webpage: https://github.com/jarun/nnn\n", VERSION);
|
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue