问答详情
源自:4-3 Linux中 find命令

find . -mtime -10 -exec ls -lh {} \; 这样写可行么。

老师,我输入find . -mtime -10 -exec ls -lh {} \; 这条指令后会出现文件显示重复,情况如下:

[root@localhost ~]# find . -mtime -10 -exec ls -lh {} \;
总用量 48K
-rw-------. 1 root root 1.3K 3月   4 18:47 anaconda-ks.cfg
drwxr-xr-x. 2 root root 4.0K 3月   5 17:18 chao
-rw-r--r--. 1 root root  25K 3月   4 18:47 install.log
-rw-r--r--. 1 root root 7.4K 3月   4 18:46 install.log.syslog
-rw-r--r--. 1 root root 7.4K 3月   4 18:46 ./install.log.syslog
总用量 0
-rw-------. 1 root root 1.3K 3月   4 18:47 ./anaconda-ks.cfg
-rw-r--r--. 1 root root 25K 3月   4 18:47 ./install.log
-rw-------. 1 root root 833 3月   5 01:12 ./.bash_history

提问者:cmlove 2016-03-05 23:59

个回答

  • zxii
    2016-03-06 01:17:55

    install.log.syslog

    上下两个是不同的文件名
     ./install.log.syslog


    anaconda-ks.cfg

    上下两个是不同的文件名

    ./anaconda-ks.cfg

  • zxii
    2016-03-06 01:15:55

    没有重复啊文件名前面多了/ .