I am using centos 7 if I want to find files that starts with the word image in the directory A
i issue the following command
find /A -name 'image*'
and in order to write the command that find files that have specific name and issued on specific date and let it be 25/10/2017 for example
Iam issuing the command
find -name 'image*' | ls -ali | grep 'Oct 25'
but it greps all files in the folder what is wrong in this command