Most of the time it happens that we load files in a common S3 bucket due to which it becomes hard to figure out data in it.
How can I view objects uploaded on a part
The following command works in Linux.
aws s3 ls --recursive s3:// | awk '$1 > "2018-10-13 00:00:00" {print $0}' | sort -n
I hope this helps!!!