grabtitle.1: add a man page - grabtitle - stupid HTML title grabber
HTML git clone git://git.codemadness.org/grabtitle
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 9abb09b8e70f977f2fde1dda6bac3d7d6c989a2a
DIR parent c09c55c8f71ef8c6e1ef6ad4aef514b2e7a077f3
HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 14 Jul 2026 16:44:48 +0200
grabtitle.1: add a man page
Diffstat:
A grabtitle.1 | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+), 0 deletions(-)
---
DIR diff --git a/grabtitle.1 b/grabtitle.1
@@ -0,0 +1,25 @@
+.Dd July 14, 2026
+.Dt GRABTITLE 1
+.Os
+.Sh NAME
+.Nm grabtitle
+.Nd output the title from HTML to plain-text
+.Sh DESCRIPTION
+.Nm
+reads UTF-8 HTML data from stdin.
+It writes the title output as plain-text to stdout.
+.Sh EXIT STATUS
+.Ex -std
+.Sh EXAMPLES
+Fetch a webpage using
+.Xr curl 1
+and pipe the output to
+.Nm
+.Bd -literal
+curl -s 'https://codemadness.org/sfeed.html' | grabtitle
+.Ed
+.Sh SEE ALSO
+.Xr curl 1 ,
+.Xr ftp 1
+.Sh AUTHORS
+.An Hiltjo Posthuma Aq Mt hiltjo@codemadness.org