shithub: 9intro

ref: 2b99422480d596ebc26921c87c6bb81a07949f3e
dir: /idx/see.prep/

View raw version
#!/bin/rc
awk ' # see.prep
#   Input:  string "\t"  	     string
#   Output: string "\t{see [also]} " string

BEGIN { FS = "\t" }
$3 ~ /%also/	{ print $1 "\t{see also} " $2; next }
		{ print $1 "\t{see} " $2 }
' $*