aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/append_COLOPHON.sh
AgeCommit message (Collapse)AuthorFilesLines
2022-08-24append_COLOPHON.sh, remove_COLOPHON.sh: Remove COLOPHON section.Alejandro Colomar1-38/+0
Users should use their distribution's standard tools to know where a given page comes from and to know how to report a bug. That'll create a small barrier to bug reporters, but that'll hopefully help improve the quality of the reports. It'll also make the pages cleaner, by removing stuff that is obvious to those who know how to use their tools. We still keep part of the information of the COLOPHON, specifically the project name and the version, in the .TH line. Reported-by: Ingo Schwarze <schwarze@openbsd.org> Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
2022-05-02scripts/append_COLOPHON.sh: Add script to append the COLOPHON sectionAlejandro Colomar1-0/+38
I first implemented it using cat <<-, but sed(1) is around 5 times faster, so even if it's a bit more complex and slightly less readable, let's use sed(1). Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>