Hi I want to list filenames in a directory having timestamp in its file name. For example: gn_752_pos_id_n_00_000_9_20200331.dat.gz gn_40006_dep_ip_c_qa_500_2_20200331_20200622T082432.dat.gz
So I want to get a list of files having timestamp format like '20200622T082432'.
I tried the following command but it didn't work. find . -type f | xargs ls -l --time-style="yyyyMMdd'T'HHmmss"