After a cold backup, you can remove all the archived redo logs (in theory of course). The point of a cold backup is that you get a complete copy of the database. Any changes after that point in time can be recoved via the archived redo-logs.

Otherwise:
find /u22/oraarch/$ORACLE_SID -mtime +5 -exec rm -f {} \;