[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

search program for the dictionary



 
    
Terrenc,

Program for using the dictionary. Only thing you need to do is set DICTIONARY to to its location.


#!/usr/bin/ksh

Word=$1;
awk 'BEGIN{FS="@"} $1 ~ /'"$Word"'/' $DICTIONARY;

Google