Dead simple.
How do I rename
05_h.png
06_h.png
to
05_half.png
06_half.png
At least, I think it's simple, but it's hard to Google for this kind of thing unless you already know.
Thanks....
Dead simple.
How do I rename
05_h.png
06_h.png
to
05_half.png
06_half.png
At least, I think it's simple, but it's hard to Google for this kind of thing unless you already know.
Thanks....
Just use bash, no need to call external commands.
Do not add
#!/bin/sh
For those that need that one-liner:
One liner:
for file in *.php ; do mv "$file" "_$file" ; done
Use the
rename
utility written in perl. Might be that it is not available by default though...Use the
rename
utility:Try
rename
command:Update:
example usage:
create some content
test solution: