Poll of the Day > How would I get a list of files modified on a certain date in Bash?

Topic List
Page List: 1
EclairReturns
11/05/22 5:13:37 PM
#1:


The one-liner I'm currently using to get a list of files in the current directory that have been modified on October the twenty-ninth
ls -l | sed "s/ \{2,\}/ /g" | cut -f 6-7,9 -d " " | grep -P "^Oct 29" | cut -f 3 -d " "


Is there a shorter way of getting such a list of files without using so many pipes?

I must have these answers.

---
Number VI: Larxene.
The Organization's Not-That-Geezer's-Heart-Tank.
... Copied to Clipboard!
Topic List
Page List: 1