lat/src/lib/arg.c

107 lines
2.8 KiB
C
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
2023-04-18 02:11:59 +00:00
#include "arg.h"
#include "util.h"
#define LAT_SHORT_ARGS "cltbrpn:Vh"
#define LAT_USAGE "usage: lat [-cltbrpnVh] [file...]"
struct config conf;
2023-04-13 13:03:33 +00:00
void help(void) {
printf("lat | lazy cat - a cat clone with some quality-of-life "
2023-04-20 04:51:09 +00:00
"embellishments\n\n");
printf("%s\n\n", LAT_USAGE);
printf(
"options:\n"
"\t-c\t toggle color\n"
"\t-l\t toggle line numbers\n"
"\t-t\t toggle file info headers\n"
"\t-b\t toggle binary mode, -b forces binary and -bb forces NOT binary\n"
"\t-r\t print everything to stdout (or equivalent)\n"
"\t-p\t print file with the pager (uses less)\n"
"\t-n\t set the name of the file in the title\n"
"\t-V\t show program version\n"
"\t-h\t display this help text\n\n");
printf("environment:\n"
"\tNO_COLOR, see https://no-color.org/\n");
2023-04-19 14:46:17 +00:00
}
void examples(void) {
2023-04-18 12:58:23 +00:00
printf(
"examples:\n"
2023-04-19 16:43:54 +00:00
"\tlat file1\n\t\t print the contents of file1 with the default "
"formatting\n"
"\tlat - file1\n\t\t read from stdin (the '-' flag reads from "
2023-04-18 12:58:23 +00:00
"stdin) "
"and then print the contents of stdin and file1\n"
2023-04-19 14:46:17 +00:00
"\tlat -nc file1 file2\n\t\t print the contents of file1 and "
2023-04-18 12:58:23 +00:00
"file2 "
"without printing line numbers or colors\n"
"\tlat --binary file.txt\n\t\t force file.txt to be treated as a binary "
"file\n"
2023-04-19 14:46:17 +00:00
"\tlat -bb --pager file.txt\n\t\t force file.txt to NOT be treated "
"as a binary file and print it in the pager\n"
2023-04-18 12:58:23 +00:00
"\tcurl example.com | lat\n\t\t pipe the results of 'curl example.com' "
"into lat\n"
"\tfzf --preview 'lat -l {}'\n\t\t use lat as the file viewer in fzf\n");
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
}
void argerr(void) {
printf("\n%s\n", LAT_USAGE);
printf("run '--help' for more information\n");
exit(EXIT_FAILURE);
}
int parseargs(int argc, char *argv[]) {
char opt;
while ((opt = getopt(argc, argv, LAT_SHORT_ARGS)) != -1) {
switch (opt) {
case 'c':
conf.color = !conf.color;
break;
case 'l':
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;
break;
case 'r':
conf.literal = !conf.literal;
break;
2023-04-19 14:46:17 +00:00
case 'p':
conf.pager = !conf.pager;
break;
case 'n':
conf.name = 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;
default:
argerr();
2023-04-13 13:03:33 +00:00
break;
}
}
return optind;
}