Answers for "terminal change permission recursively"

CSS
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

Code answers related to "terminal change permission recursively"

Browse Popular Code Answers by Language