Skip to content

Instantly share code, notes, and snippets.

@tivnet
Created January 4, 2014 14:55
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tivnet/8256140 to your computer and use it in GitHub Desktop.
Save tivnet/8256140 to your computer and use it in GitHub Desktop.
To let PHP recognize Cygwin paths, put this file to /usr/local/bin/php and chmod +x Originally published by http://stackoverflow.com/users/264395/aefxx here: http://stackoverflow.com/questions/12276946/composer-cygwin
#!/bin/bash
# Path to the PHP executable
php="/cygdrive/c/PHP/php.exe"
for ((n=1; n <= $#; n++)); do
if [ -e "${!n}" ]; then
# Converts Unix style paths to Windows equivalents
path="$(cygpath --mixed ${!n} | xargs)"
case 1 in
$(( n == 1 )) )
set -- "$path" "${@:$(($n+1))}";;
$(( n < $# )) )
set -- "${@:1:$((n-1))}" "$path" ${@:$((n+1)):$#};;
*)
set -- "${@:1:$(($#-1))}" "$path";;
esac
fi
done
"$php" "$@"
@mike-code
Copy link

Awesome!

@johnsci911
Copy link

Nice I needed this since my word requires me to use windows for some reason but this is for personal purpose
Thank you very much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment