#!/bin/sh
#
#	This is a sample of a script that pipes the input throug sed to
#	replace every occurence of aap with noot.
#

sed s/aap/noot/g
