find 命令的问题

sh/bash/dash/ksh/zsh等Shell脚本
回复
头像
pisit
帖子: 413
注册时间: 2008-07-08 10:39

find 命令的问题

#1

帖子 pisit » 2013-05-23 15:34

find . -cmin -1 -exec mv {} /mnt/ \;
如何排除 ./ 就是当前目录
cao627
帖子: 992
注册时间: 2007-12-05 10:57
系统: ubuntu14.04
来自: 金山

Re: find 命令的问题

#2

帖子 cao627 » 2013-05-23 15:52

find . -mindepth 1 -cmin -1 -exec mv {} /mnt/ \;
头像
eexpress
帖子: 58428
注册时间: 2005-08-14 21:55
来自: 长沙

Re: find 命令的问题

#3

帖子 eexpress » 2013-05-23 16:01

是1?
● 鸣学
头像
pisit
帖子: 413
注册时间: 2008-07-08 10:39

Re: find 命令的问题

#4

帖子 pisit » 2013-05-24 22:33

cao627 写了:find . -mindepth 1 -cmin -1 -exec mv {} /mnt/ \;
谢谢 :em42
回复