find-new-words.sh
changeset 32 785bc324c858
parent 25 d0fcacd6421d
equal deleted inserted replaced
31:f8a3877a91ad 32:785bc324c858
     1 #!/bin/sh
     1 #!/bin/sh
     2 
     2 
     3 if [ -z $1 ]; then
     3 if [ -z $1 ]; then
     4   echo "Where dictionary?"
     4   echo "Where dictionary?"
       
     5   echo "Try $0 --help"
       
     6   exit 1
     5 fi
     7 fi
     6 
     8 
     7 if [ "$1" = --help ]; then
     9 if [ "$1" = --help ]; then
     8   echo Simple utility for searching word those not are in dictionary.
    10   echo Simple utility for searching word those not are in dictionary.
     9   echo Search done by grep.
    11   echo Search done by grep.