作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在关注 this Wikipedia example查找和删除文件。
[jalal@galapagos-04] (5)$ touch 'not important_file'
[jalal@galapagos-04] (6)$ touch important_file
[jalal@galapagos-04] (7)$ ls
agreement.txt cs_web johns.txt reverse_sorted_user.txt songs.txt users.txt*
awk_example.txt good_users.txt marks.txt sed_example.txt sorted_user.txt
cs.html important_file not\ important_file softlink/ test@
[jalal@galapagos-04] (8)$ find . -name not\* | tail -1 | xargs rm
rm: cannot remove `./not': No such file or directory
知道如何解决这个问题吗?
最佳答案
您链接到的 xargs
文章详细讨论了如何使用 null 或行终止处理来处理这些确切的情况,但您甚至没有使用 xargs
.
您复制了一个示例,该示例旨在说明不起作用的内容。
关于linux - xarg,找到并 rm rm : cannot remove `./not' : No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35121627/
我是一名优秀的程序员,十分优秀!