Solution
Use the find command with ls command to find a list of file in the current directory that are over 1000k or 1MB
find . -size +1000k -print0 | xargs -0 ls -lSh
Output
Solution
Use the find command with ls command to find a list of file in the current directory that are over 1000k or 1MB
find . -size +1000k -print0 | xargs -0 ls -lSh
Output