ref: 87288afa5ac476efb3ef1ed40df658427339f13e
dir: /idx/see.prep/
#!/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 }
' $*