As we know, ls -S will list all files ordered by size.
What I'm trying to do is to list all files in the directory /usr ordered by size. So I executed the command as below:
find /usr -type f -exec ls -lS {} \;
However, it doesn't seem that this command listlists all files ordered by size... -S doesn't work here.