I have a csv file which I need to order based on the timestamp. It is the third column in the csv and I am using below commands to sort:
awk \'NR<2{print $_;n
I will try to sort by date and then by time
awk -F"," '{print $3,$1,$2}' file.csv | sort -d' ' -k 1d -k 2d
BTW, it would be great if you just share a small section of your file. :)