Run bash script in cmd with cygwin

2013-09-24 Thread Ulrich Pogson
Hello I would like to run this script `for file in `find . -name "*.po"` ; do msgfmt -o ${file/.po/.mo} $file ; done` in windows cmd. The script need to run in a different folder. I have been able to run it though cygwin but want to integrate it with another system where it will be run through cmd

Re: Run bash script in cmd with cygwin

2013-09-24 Thread Ulrich Pogson
Thanks Matt, after try everything I could not get it to work. Could you give me the whole code that I could enter in cmd that would run cygwin and then run the script? On 24 September 2013 23:43, Ulrich Pogson wrote: > Hello > > I would like to run this script `for file in `find . -n

Re: Run bash script in cmd with cygwin

2013-09-25 Thread Ulrich Pogson
; Greetings, Ulrich Pogson! > >> I would like to run this script `for file in `find . -name "*.po"` ; >> do msgfmt -o ${file/.po/.mo} $file ; done` in windows cmd. > > I think you mean "command line" and not a "script". > This is not realistical

Re: Run bash script in cmd with cygwin

2013-09-25 Thread Ulrich Pogson
Repin wrote: > Greetings, Ulrich Pogson! > >>>> I would like to run this script `for file in `find . -name "*.po"` ; >>>> do msgfmt -o ${file/.po/.mo} $file ; done` in windows cmd. >>> >>> I think you mean "command line" and not a &qu