How can I display all files greater than 10k bytes in my current directory and it\'s subdirectories.
Tried ls -size +10k but that didn\'t work.
ls -size +10k
I'll add to @matchew answer (not enough karma points to comment):
find . -size +10k -type f -maxdepth 1 -exec ls -lh {} \; > myLogFile.txt
-type f :specify regular file type
-maxdepth 1 :make sure it only find files in the current directory