1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#include <libgen.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "file.h"
#include "lib.h"
#define INVERT_T "\x1b[7m"
#define UINVERT_T "\x1b[27m"
#define GREY "\x1b[90m"
#define RESET "\x1b[0m"
void run(char *filename) {
int tty = isatty(STDOUT_FILENO);
FILE *fp = fopen(filename, "r+b");
if (fp == NULL)
die("fopen");
if (tty)
fprintf(stderr, "%s%s%s\r\n", INVERT_T, basename(filename), UINVERT_T);
struct filedata f;
f = readfile(fp);
fclose(fp);
int lcpad = intlen(f.lc);
f.lc = 0;
char pc = '\0';
char c;
for (unsigned i = 0; i < f.len; i++) {
c = f.buf[i];
if (tty && (pc == '\n' || i == 0)) {
f.lc++;
int padlen = lcpad - intlen(f.lc);
char padding[padlen];
memset(padding, ' ', padlen);
fprintf(stderr, "%s%s%d:%s ", GREY, padding, f.lc, RESET);
}
pc = c;
printf("%c", c);
}
if (tty) {
float rounded;
char *format = formatBytes(f.len, &rounded);
fprintf(stderr, "%s%.2f %s%s\r\n", INVERT_T, rounded, format, UINVERT_T);
}
}
int main(int argc, char *argv[]) {
if (argc < 2) {
fprintf(stderr, "usage: %s <FILE/s>\n", argv[0]);
exit(1);
}
for (int i = 1; i < argc; i++) { // start at one to offset argv[0]
run(argv[i]);
if (i + 1 != argc) {
fprintf(stderr, "\r\n"); // separate concurrent files
}
}
return 0;
}
|