On Thu, 5 Apr 2001, D-Man wrote:[...]> #!/bin/bash>> //d/apps/Python20/python.exe $*[...]Aha! Good idea. Perhaps even better:#!/bin/shtemp = "$@ "//d/apps/Python20/python `cygpath -w $1` ${temp#* }Yuck. It does seem to work, though. Aren't you glad you can use Pythoninstead of shell scripts?John