commit a490444938eff6c12b7a7d7a5a8fcd4e68a101a1 from: Russ Cox date: Sun Dec 07 00:46:30 2008 UTC sig: consult unix man pages too commit - 272c1fb2d928168074798cf2a467591121273478 commit + a490444938eff6c12b7a7d7a5a8fcd4e68a101a1 blob - 0db15f30d53e4c2519c06d75e3feedf1f2ca5b8b blob + ed4c983affeda4f57e7bd2406b481ef15b1dcb4e --- bin/sig +++ bin/sig @@ -9,6 +9,12 @@ if(~ $#* 0){ exit 1 } +noplan9=() +for(p in $path) { + if(! ~ $p $PLAN9/bin) + noplan9=($noplan9 $p) +} + for (i) { files=`{grep -il '[ ]\*?'$i'\(' $PLAN9/man/man3/*.3*} for(j in $files) { @@ -24,6 +30,17 @@ for (i) { s/[ ]+/ /g' | grep -i -e '[ ]\*?'$i'\(' | sed 's/^[ +]/ /' } + { path=$noplan9; man 2 $i; man 3 $i } >[2]/dev/null | nobs | sed -n ' + :d + /SYNOPSIS/bp + n + bd + :p + /DESCRIPTION/bd + p + n + bp + ' | grep -i -e '[ ]\*?'$i'\(' | sed 's/^[ +]/ /' } exit 0