I would like to find all NON read-only files in my directory using cygwin's find command.
Is it possible ?
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