summaryrefslogtreecommitdiff
path: root/m
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-01-28 21:32:18 +0000
committerJohn Ankarström <john@ankarstrom.se>2021-01-28 21:32:18 +0000
commitf3fd330cddade1c66d0f101d5cc6f657c4cd1bb6 (patch)
tree87ccd4ed6ca757709164615b8cbce92932a96f21 /m
downloadplan9-f3fd330cddade1c66d0f101d5cc6f657c4cd1bb6.tar.gz
Add various tools
Diffstat (limited to 'm')
-rwxr-xr-xm10
1 files changed, 10 insertions, 0 deletions
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