find / -user kim -print 2>&1 | less
or
find / -user kim -print > messed_up_files.txt
In the first one, files and errors will be printed to the screen and
paged with the "less" command, in the later one, the errors will be
printed to the terminal and the results will go into the file.