see this and help me

see this and help me

[root@localhost etc]# find / -name "main*" > -atime +7 ok rm {} \;
find: paths must precede expression
Usage: find [path...] [expression]
你的“>” 是干什么滴? ok 又是干什么滴?
find / -name "main*" -exec rm -rf {} \
可以达到你的目的
find / -name main\* -and -atime +7 -ok -exec rm {} \;
-ok -exec

这两个可以一起用吗?!那代表什么?!
看看正则表达式语法  就知道拉