The find command is very useful but very, very poorly documented. Not that the options aren't mentioned in the man page, but that doesn't help me understand how to use the program. I had to Google to find the correct usage of "-perm +u=w".
What's missing is a couple of examples of the options in actual use. Like... the SYNOPSIS section of Perl module docs! That's really something they got right.
So to find files not added or checked in to SourceSafe (yuck!), here's how to do it. List using less, but don't wrap lines (-S)
find . -perm +u=w ! -type d ! -name 'vssver.scc' ! -name '*~' ! -name '#*#' | less -S