I retrieve a booklist after seaching the python books in home directory using command
find ~ -type f -iregex '.*python.*\.pdf'
the booklist
...
.../Computing/Python/Beginning_Python.pdf
.../Python/Core.Python.Applications.Programming.3rd.Edition.pdf
.../Python/Packt.Mastering.Python.2016.4.pdf
...
I intend to check their status with command xargs
and stat
find ~ -type f -iregex '.*python.*\.pdf' | xargs -0 stat -x
get error
: stat: File name too long
How to conquer such a problem?