#!/bin/sh # Mon Aug 28 12:52:49 EDT 2000 # ph - a simple phone book - version 0.2 # Copyright 2000, Chris F.A. Johnson # released under the terms of the # GNU General Public Licence phbase="/info/data/phones $HOME/.phones" for f in $phbase do if [ ! -f $f ] then touch $f fi done egrep -ih "$@" $phbase