#!/bin/bash
if grep hello $1 > /dev/null
then
	echo $1 contained hello
fi
