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
Post a Comment