I do not understand much about regular expressions. I hope you can help me.
I have in a file the date of some files
Aug 15:07 file1.txt
Jul 15:04 file2.txt
Aug 15:05 file3.txt
Aug 15:05 file4.txt
Aug 2016 file5.txt
Jul 15:09 file6.txt
I want only files that start with 'Aug' AND have the time (:)
/^Aug :/
But doing that shows me all the files without exception