Here is the code:
find /home/185053/ -iname "*.{txt,out}" -type f -size +8 -size -15
So, the command works if I exclude the -iname "*.{txt,out}"
part out.
I've tried using | grep "*.{txt,out}"
at the end but that doesn't work either.
Any ideas?