i am using the following syntax on an HPUX machine, and have no luck removing older files, getting the following error: find: -exec not terminated with ';'\
find /path/ -type f -mtime +90 -name "*.tgz" -exec rm {} \ ;\
any suggestions?
Looks like there is an empty space between \
and ;