Linux Commands can be combined and make a powerfull scripts. BASH programming language helps to make athe scripts on linux.
tr means text replace, this command used to replace some letters with another word, like the ROT encodes.
cat yourtext.txt | tr 'A-Za-z' 'B-Zb-z'grep can help us here.
grep have an option called recursive( -r )
ls path | grep -r "TEXT" for i in *;do mv $i 00$i