The answer to your first point is to make sure that the native win32 perl appears before the cygwin one in your path.
The answer to the second part is -c which will execute a command supplied on the command line. The command flags are the same as standard bash, so man bash or any bash documentation will get you a list of them.
Just as an aside, if you're mixing and matching native win32 applications with cygwin, take a look at UnxUtils. It is based on msvcrt.dll rather than cygwin.dll so the programs will play nicely with standard windows paths (e.g. C:\foo\bar instead of needing a /cygdrive path like /cygdrive/c/foo/bar).
It's much less comprehensive than Cygwin, but is mature and stable and has a good cross-section of the basic unix commands (sed etc.) It will play nicely with windows command files (you can do piping and redirection) and there is a port of zsh with it so it will also run shell scripts, although zsh is not totally compatible with bash.
