I've written a small gradle-path
utility:
#!/usr/bin/env sh
export PATH=$PATH:/cygdrive/c/Gradle/gradle-3.5/bin
But, when I call it from my shell, the PATH is not changed at the end.
The variable isn't set in the parent process if I understand correctly.
How to make that possible?