I have a lot of files I\'m trying to rename, I tried to make a regular expression to match them, but even that I got stuck on the files are named like:
<
find . -type d -print0 | xargs -0 rename 's/(\d+)/sprintf "%03d", $1/e'
or something like that, provided
-print0
and -0
)