Tar with particular date files

I need to find out only Jun 10 created and modified file with tar command ,, I am using Linux red hat x86_64 GNU/Linux.

ls -lrt

-rw-r--r-- 1 nova nova    2757 Jun  7 11:00 feed.ctl
-rwxrwxr-x 1 nova nova     457 Jun  7 11:00 acc_feed.csh
-rwxr-xr-x 1 nova nova     473 Jun  7 12:11 acc_feed_d2.csh
-rwxr-xr-x 1 nova nova     937 Jun 10 11:28 minus_1.csh
-rwxr-x--- 1 nova nova    1758 Jun 10 12:15 reject_ld.csh
-rwxr-x--- 1 nova nova    2019 Jun 10 12:18 reject_ld2.ctl
-rwxr-xr-x 1 nova nova     979 Jun 10 13:34 stg_2.csh
-rwxr-xr-x 1 nova nova     855 Jun 10 09:12 mspool.csh

tar output file should have below files..
Please help me to find out the 1 line Linux command , Thanks in advance...

make sure you support Unix.com and one of your local charities ...

tar -cf /dir/file.tar $(ls -l | grep "Jun 10" | awk '{print $NF}')

thank you so much for your help , need to tar file based on from and to date and time.

ls -lrt
-rw-r--r-- 1 nova nova 2757 Jun 7 11:00 feed.ctl
-rwxrwxr-x 1 nova nova 457 Jun 7 11:00 acc_feed.csh
-rwxr-xr-x 1 nova nova 473 Jun 7 12:11 acc_feed_d2.csh
-rwxr-xr-x 1 nova nova 937 Jun 10 11:28 minus_1.csh
-rwxr-x--- 1 nova nova 1758 Jun 10 12:15 reject_ld.csh
-rwxr-x--- 1 nova nova 2019 Jun 10 12:18 reject_ld2.ctl
-rwxr-xr-x 1 nova nova 979 Jun 10 13:34 stg_2.csh
-rwxr-xr-x 1 nova nova 855 Jun 10 09:12 mspool.csh

need to tar a file between Jun 7, 11:00 and Jun 10, 12:18.

we use csh shell on linix os . thanks in advance.

---------- Post updated at 05:14 AM ---------- Previous update was at 03:02 AM ----------

basically i need from datetime and to date_date tar file .
please do the needful. thanks.