Docs: add proper date to man page

This commit is contained in:
Nikita Ivanov 2022-07-31 23:30:13 +05:00
parent 2e0827a873
commit 2e314e10ea
No known key found for this signature in database
GPG Key ID: 6E656AC5B97B5133
3 changed files with 17 additions and 1 deletions

View File

@ -43,6 +43,7 @@ clean:
docs: README.md doc/ctpv.1
deptable/list.awk $(PRE) | deptable/markdown.sed | deptable/insert.awk README.md
deptable/list.awk $(PRE) | deptable/roff.sed | deptable/insert.awk doc/ctpv.1
./updatedate.awk doc/ctpv.1
ctpv: $(OBJ)
$(CC) -o $@ $+ $(LDFLAGS)

View File

@ -14,7 +14,7 @@
\&\fB\\$1\fP \fI\\$2\fP\\$3
..
.
.TH CTPV 1 "July 2022" Linux "User Manuals"
.TH CTPV 1 2022-07-31 Linux "User Manuals"
.
.SH NAME
ctpv \- terminal previewer

15
updatedate.awk Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/gawk -f
@include "inplace"
BEGIN {
FS = " "
}
/^\.TH / {
cmd = "date +%Y-%m-%d"
cmd | getline $4
close(cmd)
}
{ print }