#!/bin/sh


p=$1

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

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

