Digital Marketing

How to list file names in a certain date range using ls command

For example, show files between Apr 1 and 20:
$ ls -al | awk '$6 == "Apr" && $7 >= 1 && $7 <= 20'

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database