#!/bin/sh


p=$1

if [ `uname -a | fgrep -c Cygwin` != 0 ]; then 
    d=`cygpath -m "$2"` 
else
    d=$2 
fi

sed -e "s;$p;$d;g"

