Using awk with ‘ls -l’ linux command

Some creative ways to use awk with ls -l command. Find all files for a certain month:  ls -l | awk ‘$6==”Sep”{print}’ Find all files with a size greater than:  ls -l | awk ‘$5>1009{print}’ [user1@jibsheet data]$ ls -l | awk ‘$6==”Sep”{print}’ -rw-rw-r– 1 user1 datausr 54255 Sep 9 12:34 alex_Y2021_M09_D09_H12.txt -rw-r–r– 1 user1 datausr 54255 Sep 17 01:33 alex_Y2021_M09_D17_H01.txt […]