vote up 0 vote down star

In cygwin, I could just do ./script.sh args, but this opens the script file in notepad in PowerShell.

What do I need to do have it execute?

flag

57% accept rate
1  
I'm wondering why you expect a *nix-ish script to run in Powershell... They have completely different command sets and scripting syntax (also, powershell scripts require a .ps1 extension AFAIK). You could post the bash script and someone might be able to help you with a powershell version. – John Barrett Jul 8 at 15:37
Because: it works. See accepted answer. – wsorenson Jul 8 at 17:08
I am enlightened :) – John Barrett Jul 8 at 18:52

1 Answer

vote up 3 vote down check

You should put the script as argument for a *NIX shell you run, equivalent to the *NIXish

sh myscriptfile
link|flag
sh ./script.sh works. – wsorenson Jul 8 at 17:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.