I want to list all the files with .sh extension and size greater than 5kb with the same directory. what I know is how to list all files with a specific size by:
find . -size +5k -exec ls -l {} \+
and how to list all the files with specific extension by:
ls *.sh
what do I need to know is how to do both simultaneously?