当前位置: 技术问答>linux和unix
$ find . -maxdepth 1 -perm -111 -type f | xargs --no-run-if-empty rm -i
来源: 互联网 发布时间:2016-10-17
本文导语: [test@localhost ~]$ find . -maxdepth 1 -perm -111 -type f | xargs --no-run-if-empty ls -l -rwxrwxr-x. 1 test test 4995 2010-11-17 14:27 ./1 [test@localhost ~]$ find . -maxdepth 1 -perm -111 -type f | xargs --no-run-if-empty rm -i rm: remove regul...
[test@localhost ~]$ find . -maxdepth 1 -perm -111 -type f | xargs --no-run-if-empty ls -l
-rwxrwxr-x. 1 test test 4995 2010-11-17 14:27 ./1
[test@localhost ~]$ find . -maxdepth 1 -perm -111 -type f | xargs --no-run-if-empty rm -i
rm: remove regular file `./1'? [test@localhost ~]$
这里为什么不等我按键就直接执行完了。
rm: remove regular file `./1'? 这里接收的键盘输入是从哪里来的?
-rwxrwxr-x. 1 test test 4995 2010-11-17 14:27 ./1
[test@localhost ~]$ find . -maxdepth 1 -perm -111 -type f | xargs --no-run-if-empty rm -i
rm: remove regular file `./1'? [test@localhost ~]$
这里为什么不等我按键就直接执行完了。
rm: remove regular file `./1'? 这里接收的键盘输入是从哪里来的?
|
find . -maxdepth 1 -perm -111 -type f | xargs -p --no-run-if-empty rm
man xargs
-p Prompt the user about whether to run each command line and read
a line from the terminal. Only run the command line if the re-
sponse starts with ‘y’ or ‘Y’. Implies -t.
man xargs
-p Prompt the user about whether to run each command line and read
a line from the terminal. Only run the command line if the re-
sponse starts with ‘y’ or ‘Y’. Implies -t.
|
find . -maxdepth 1 -perm -111 -type f -exec rm -i {} ;
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。