Re: Modified Date Problem - How to change modified date of many files?



On Mon, 25 Jun 2007 15:35:56 -0700, ISOHaven wrote:

sh-2.04# find / -type f -mtime +7305 -print0 | xargs --null touch -m
sh: xargs: command not found

xargs should have been included with the rest of the GNU fileutils, but
since it's not:

# find / -type f -mtime +7305 -exec touch -m {} \;

.