Sign in
plan9port
/
plan9
/
357621cd82c8cf27c4e6a6514b779fd77721b907
/
.
/
src
/
cmd
/
index
/
see.prep
blob: 33d4c2df956745610445d8612e47796d23ceec42 [
file
]
#!/bin/sh
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 }
'
$
*