Answers for "recursivley fix html files"

CSS
0

change file recursively

find . -name "*.t1" -exec rename 's/.t1$/.t2/' '{}' +
Posted by: Guest on October-13-2020
0

change file recursively

shopt -s globstar
for f in **/*.t1; do
    mv "$f" "${f%.t1}.t2"
done
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language