我使用命令
在主目录中搜索python书籍后检索书单 find ~ -type f -iregex '.*python.*\.pdf'
书单
...
.../Computing/Python/Beginning_Python.pdf
.../Python/Core.Python.Applications.Programming.3rd.Edition.pdf
.../Python/Packt.Mastering.Python.2016.4.pdf
...
我打算使用命令xargs
和stat
find ~ -type f -iregex '.*python.*\.pdf' | xargs -0 stat -x
得到错误
: stat: File name too long
如何克服这样的问题?
答案 0 :(得分:2)
如果您将-0
与xargs
一起使用,则还应将-print0
与find
一起使用。