find all files with read write permissions for owner only and show permissions

find all files with read write permissions for owner only and show permissions

find -perm "permissions"

. start in current dir

- exec = execute following command

find . -perm 600 -exec ls -l {} \;

find exec missing argument:

if you get the missing argument error, be sure to use the space \;

the \ escape is not always needed (depends on shell)