m_vitaly Asked: 2011-03-07 00:53:08 +0800 CST2011-03-07 00:53:08 +0800 CST 2011-03-07 00:53:08 +0800 CST Cygwin find integration 772 I would like to find all NON read-only files in my directory using cygwin's find command. Is it possible ? unix command-line-interface cygwin find 1 Answers Voted m_vitaly 2011-03-07T01:09:50+08:002011-03-07T01:09:50+08:00 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
It seems that cygwin maps windows file attributes to unix file permissions. So this command works to find all non read-only files: