I would like to find all NON read-only files in my directory using cygwin's find command.

Is it possible ?

link|improve this question
feedback

1 Answer

It seems that cygwin maps windows file attributes to unix file permissions. So this command works to find all non read-only files:

find . -type f -perm -u+w
link|improve this answer
In Cygwin 1.7, Unix file permissions map to Windows access control lists (ACLs) rather than ye olde DOS file attributes. – ak2 Mar 6 '11 at 16:59
feedback

Your Answer

 
or
required, but never shown

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