#! /bin/bash
#
# Marc Groenewegen 2006
#
# Edit all files containing search key
#
# Replace gvim with your favourite editor, which probably is gvim anyway
#
# Example: grepedit session *.php

gvim -geometry 80x50 `grep -il $*`

