#!/bin/sh
if [ "$#" == "0" ]; then
  cat $HOME/Contacts
  echo
else
  grep -i "$1" $HOME/Contacts
fi
