make sure only whole words are matched, use [:space:] RE to avoid embedded

<TAB>s
This commit is contained in:
drochner 1999-07-27 15:41:27 +00:00
parent 95fc3b5710
commit b0c1735026
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $NetBSD: wtf,v 1.3 1999/07/25 20:29:04 briggs Exp $
# $NetBSD: wtf,v 1.4 1999/07/27 15:41:27 drochner Exp $
#
# Public domain
#
@ -18,7 +18,8 @@ fi
rv=0
while [ $# -gt 0 ] ; do
target=`echo $1 | tr '[a-z]' '[A-Z]'`
ans=`sed -ne "/^$target/s/^$target[ ]*//p" < $acronyms 2>/dev/null`
ans=`sed -ne "/^$target[[:space:]]/s/^$target[[:space:]]*//p" \
< $acronyms 2>/dev/null`
if [ "$ans" != "" ] ; then
echo "$target: $ans"
else