On 2022-02-01 12:17, Bijan Soleymani wrote:
find | xargs stat
Oops that might not work if there are spaces in the filenames/directories. You can do: find -print0 | xargs -0 stat In that case. Bijan
On 2022-02-01 12:17, Bijan Soleymani wrote:
find | xargs stat
Oops that might not work if there are spaces in the filenames/directories. You can do: find -print0 | xargs -0 stat In that case. Bijan