From f3fd330cddade1c66d0f101d5cc6f657c4cd1bb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Thu, 28 Jan 2021 21:32:18 +0000 Subject: Add various tools --- m | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 m (limited to 'm') diff --git a/m b/m new file mode 100755 index 0000000..1da3add --- /dev/null +++ b/m @@ -0,0 +1,10 @@ +#!/bin/rc -e +# m -- open man page(s) for command +m=`{apropos $1} +n=() +for(p in $m) + if(~ $p *'(1)' *'(4)') + n=($n $p) +if(~ $#n 0) + exit 'no manual page' +plumb $n -- cgit v1.2.3