Posts by Luiz Felipe R.C • 11 points
2 posts
-
0
votes2
answers42
viewsA: Rename new files without interfering with old ones
I solved the problem by adding the command grep. With that, I got what I really wanted. Stayed like this: for f in $(find . -name "*.srt" | grep -v "pt-BR"); do mv "$f" "$(echo $f | sed…
-
0
votes2
answers42
viewsQ: Rename new files without interfering with old ones
I need to rename some files .srt, but if I do it in the current way it will impact the old files. I have several subtitle files that I’ve already edited for pt-BR.srt, but with the addition of new…