2023-04-13 03:46:53 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2023-04-26 22:05:13 +00:00
|
|
|
#include <stdnoreturn.h>
|
2023-04-29 19:42:42 +00:00
|
|
|
#include <unistd.h>
|
2023-04-13 03:46:53 +00:00
|
|
|
|
2023-04-18 02:11:59 +00:00
|
|
|
#include "arg.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2023-04-29 19:42:42 +00:00
|
|
|
#define LAT_SHORT_ARGS "cltbrpn:e:Vh"
|
|
|
|
#define LAT_USAGE "usage: lat [-cltbrpneVh] [file...]"
|
2023-04-21 00:31:21 +00:00
|
|
|
|
|
|
|
struct config conf;
|
2023-04-13 13:03:33 +00:00
|
|
|
|
|
|
|
void help(void) {
|
2023-04-18 03:58:23 +00:00
|
|
|
printf("lat | lazy cat - a cat clone with some quality-of-life "
|
2023-04-20 04:51:09 +00:00
|
|
|
"embellishments\n\n");
|
2023-04-18 03:58:23 +00:00
|
|
|
|
|
|
|
printf("%s\n\n", LAT_USAGE);
|
2023-04-29 19:42:42 +00:00
|
|
|
printf("options:\n"
|
|
|
|
"\t-c toggle color\n"
|
|
|
|
"\t-l toggle line numbers\n"
|
|
|
|
"\t-t toggle file info headers\n"
|
|
|
|
"\t-b set binary mode, -b forces binary and -bb forces NOT "
|
|
|
|
"binary\n"
|
|
|
|
"\t-r print everything (headers, line numbers, etc.) to "
|
|
|
|
"stdout (or equivalent)\n"
|
|
|
|
"\t-p print file with the pager (uses less)\n"
|
|
|
|
"\t-n <name> manually set the name of the file shown in the title\n"
|
2023-05-04 13:59:52 +00:00
|
|
|
"\t-e <program> NONFUNCTIONAL (will be added soon) link extension to lat\n"
|
2023-04-29 19:42:42 +00:00
|
|
|
"\t-V show program version\n"
|
|
|
|
"\t-h display this help text\n\n");
|
2023-04-18 03:58:23 +00:00
|
|
|
printf("environment:\n"
|
2023-04-21 00:31:21 +00:00
|
|
|
"\tNO_COLOR, see https://no-color.org/\n");
|
2023-04-19 14:46:17 +00:00
|
|
|
}
|
|
|
|
|
2023-04-13 13:03:33 +00:00
|
|
|
void version(void) {
|
2023-04-18 01:55:08 +00:00
|
|
|
printf("lat - v%s built %s at %s\n", LAT_VERSION, __DATE__, __TIME__);
|
2023-04-13 13:03:33 +00:00
|
|
|
}
|
|
|
|
|
2023-04-26 22:05:13 +00:00
|
|
|
noreturn void argerr(void) {
|
2023-04-21 00:31:21 +00:00
|
|
|
printf("\n%s\n", LAT_USAGE);
|
2023-04-26 22:05:13 +00:00
|
|
|
printf("run '-h' for more information\n");
|
2023-04-13 03:46:53 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2023-04-21 00:31:21 +00:00
|
|
|
int parseargs(int argc, char *argv[]) {
|
|
|
|
char opt;
|
|
|
|
while ((opt = getopt(argc, argv, LAT_SHORT_ARGS)) != -1) {
|
|
|
|
switch (opt) {
|
2023-04-13 03:46:53 +00:00
|
|
|
case 'c':
|
|
|
|
conf.color = !conf.color;
|
|
|
|
break;
|
2023-04-21 00:31:21 +00:00
|
|
|
case 'l':
|
2023-04-13 03:46:53 +00:00
|
|
|
conf.lines = !conf.lines;
|
|
|
|
break;
|
2023-04-18 02:04:03 +00:00
|
|
|
case 't':
|
|
|
|
conf.headers = !conf.headers;
|
|
|
|
break;
|
2023-04-18 01:07:24 +00:00
|
|
|
case 'b':
|
2023-04-18 12:58:23 +00:00
|
|
|
if (conf.force_binary < 0)
|
|
|
|
conf.force_binary = 1;
|
|
|
|
else
|
|
|
|
conf.force_binary = !conf.force_binary;
|
2023-04-13 03:46:53 +00:00
|
|
|
break;
|
2023-04-21 00:31:21 +00:00
|
|
|
case 'r':
|
2023-04-20 02:30:10 +00:00
|
|
|
conf.literal = !conf.literal;
|
|
|
|
break;
|
2023-04-19 14:46:17 +00:00
|
|
|
case 'p':
|
|
|
|
conf.pager = !conf.pager;
|
|
|
|
break;
|
2023-04-21 00:31:21 +00:00
|
|
|
case 'n':
|
|
|
|
conf.name = optarg;
|
|
|
|
break;
|
2023-04-29 19:42:42 +00:00
|
|
|
case 'e':
|
|
|
|
conf.extension = optarg;
|
|
|
|
break;
|
2023-04-13 13:03:33 +00:00
|
|
|
case 'V':
|
|
|
|
version();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
break;
|
2023-04-18 01:07:24 +00:00
|
|
|
case 'h':
|
|
|
|
help();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
break;
|
2023-04-21 00:31:21 +00:00
|
|
|
default:
|
|
|
|
argerr();
|
2023-04-13 13:03:33 +00:00
|
|
|
break;
|
|
|
|
}
|
2023-04-13 03:46:53 +00:00
|
|
|
}
|
2023-04-21 00:31:21 +00:00
|
|
|
return optind;
|
2023-04-13 03:46:53 +00:00
|
|
|
}
|