find-command: search with created time

前端 未结 3 1139
隐瞒了意图╮
隐瞒了意图╮ 2021-01-14 14:12

How can I find things created \"Jul 30 04:37\" and move them to /tmp? Something wrong:

find .  -ctime \"0037043007\" -exec mv {} /tmp +
3条回答
  •  孤街浪徒
    2021-01-14 14:43

    I am not sure why you are using the "exec {} +" syntax... How about this:

    find . -ctime "0037043007" -exec mv \{} /tmp/ \;
    

提交回复
热议问题