Mail Archives: cygwin/2005/09/16/16:36:02
On Fri, Sep 16, 2005 at 01:33:18PM -0700, Joshua Daniel Franklin wrote:
>On 9/16/05, Christopher Faylor wrote:
>> On Fri, Sep 16, 2005 at 01:22:10PM -0700, Joshua Daniel Franklin wrote:
>> >On 9/16/05, Eric Blake wrote:
>> >> According to Williams, Gerald S (Jerry) on 9/15/2005 10:48 AM:
>> >> > The FAQ (http://www.cygwin.com/faq/faq_3.html) mentions
>> >> > using this idiom for strace and cygcheck, but not for
>> >> > Tcl/Tk. Perhaps these should be noted as well?
>> >>
>> >> Now that strace and cygcheck work in without having to explicitly mount
>> >> them non-cygexec, the FAQ needs updating anyways.
>> >
>> >OK. Maybe I'll take a stab at creating a script to find exe's in /bin/
>> >not linked to cygwin1.dll and put that in the FAQ instead.
>>
>> Hooboy. Now you've done it.
>>
>> #!/bin/sh
>> cd /bin; for f in `find . -type f -name '*.exe'`; do
>> cygcheck $f | (fgrep -qi cygwin1.dll || echo $f)
>> done
>>
>> Should do it. You can use this or one of the 27 variations on this
>> that are sure to follow.
>
>I'll have to try it when I'm at a Windows machine... but would it be
>faster to use xargs? :)
Yes, but the parsing would be trickier.
cgf
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
- Raw text -