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
Try doing this:
find . -size +10k -ls
And if you want to use the binary ls :
ls
find . -size +10k -exec ls -l {} \;