#!/bin/sh

# convert a win32 pathname or PATH to a msys pathname

echo $1 | sed -e 's,\(.\):,/\1,g' -e 's,\\,/,g' -e 's/;/:/g'