in reply to Re^2: To count number of files created yesterday in a directory
in thread To count number of files created yesterday in a directory

Hi hippo,

a simple glob "*" doesn't match all entries like it would on other platforms

At least on Linux, glob "*" skips entries beginning with a dot, to get those you need glob ".* *".

Regards,
-- Hauke D