I have a file named as abc.txt and I am trying to extract no of records present in the file and the file creation date.
wc -l abc.txt
This is giving me only no of records in the file.
How to get the count and the data at a time in a single command?
&&
operator. For examplewc -l abc.txt && stat abc.txt
– Jason K Lai Jul 18 '19 at 17:43