1.7.10 : output from .NET programs does not get through pipeline

2012-02-23 Thread Ilya Beylin
you seen anything like this? How can it be fixed? Regards Ilya Beylin -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

Re: cygwin-1.7: mv appends .exe extension to .bat and .com files

2010-03-19 Thread Ilya Beylin
> Had the same problem, cp and mv appending exe to nearly everything. > After I upgraded coreutils from 8.4.1 to 8.4.2 the issue has been resolved. I have coreutils 7.0-2 and "mv" seems to work correctly for me, however I see that both rsync and rdiff-backup add the .exe suffix when copying an exe

Re: allow executing a path in backslash notation

2010-03-10 Thread Ilya Beylin
Thomas, you are right, it is rather an issue with bash: when does not see a slash in the command name, it starts path searching, and of course finds nothing. Looks like a bug. $ "$WINDIR\system32\cmd.exe" /c echo ok bash: C:\WINDOWS\system32\cmd.exe: command not found $ "$WINDIR/system32\cmd.exe"

Re: allow executing a path in backslash notation

2010-03-10 Thread Ilya Beylin
The problem is that DOS paths are treated differently, even within the same program. Take for instance, bash: $ builtin test -x "$WINDIR\system32\cmd.exe" && echo ok yes $ builtin exec "$WINDIR\system32\cmd.exe" /C echo ok -bash: exec: C:\WINDOWS\system32\cmd.exe: not found That makes a lot of he

Re: 1.7.1: Problem with cygstart and arguments containing spaces

2010-03-04 Thread Ilya Beylin
Hello, Cyrille Lefevre wrote: > cygstart --wait /system32/cmd /c "echo 1 2&pause" I do not think it is a convincing example. cmd.exe treats everything that follows / c as a single command, so yuo would get the same result even without quotes.     cygstart --wait $WINDIR/system32/cmd /c echo 1 2 

SV: Cygwin 1.7 cannot access network share

2010-03-03 Thread Ilya Beylin
some ACL work, and > you are on your own if a name with a backslash doesn't do what you wanted. I understand, but I do not think it does apply in my case. Any further ideas? Ilya Beylin -- Problem reports: http://cygwin.com/problems.html FAQ: http://cyg