2021-08-18
Ajout dans Command de :
From Command
Go to text ā
Batch rename
rename '.jpeg' to '.JGP'x
find . -name '*.jpeg' -exec sh -c 'mv "$0" "${0%.jpeg}.jpg"' {} \;
rename adding prefix suffix
find . -type f -name "*" -printf "%f\0" | xargs --null -I{} mv {} "prefix {} suffix"
From Command
Go to text ā
Batch move
move '.RAF' to /RAF dir
find . -name '*.RAF' -exec mv {} RAW/ \;