Find files with size in Unix [closed]
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I am looking for a Unix command to print the files with its size. I used this but it didn't work. find . -size +10000k -print. I want to print the size of the file along with the filename/directory. 回答1: find . -size +10000k -exec ls -sd {} + If your version of find won't accept the + notation (which acts rather