shell - how to run cygwin script in powershell -


i trying run cygwin script in powershell. how can that?

i tried giving full path of scripts followed args . isnt working example : /c/script/path/script args

use either /cygdrive/c/script/path/script or c:/script/path/script (note capital c , lack of leading slash in latter path). plus, need run script correct interpreter, e.g.:

& c:\cygwin\bin\bash.exe /cygdrive/c/script/path/script ... 

Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -