General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Lawrence D’Oliveiro
DistroTube
comments
Comments by "Lawrence D’Oliveiro" (@lawrencedoliveiro9104) on "Tools For Renaming Files In Linux" video.
7:15 Tip for the find command: start by putting an “echo” as the first word after -exec, so it prints out the command instead of executing it. That helps you ensure it will do the right thing before turning it loose.
12
One interesting difference is that “{00..10}” automatically expands to 2-digit numbers with leading zeroes, whereas “seq 00 10” does not; you have to use something like “seq -f%02.0f 0 10”.
5
One command I have used a fair bit is mmv. That does its own recognition of shell-style wildcards, substituting them into the output pattern. E.g. mmv -v '*.TXT' '#1.txt' renames files ending with .TXT to corresponding .txt, telling you what it’s renaming as it goes. It also provides the “-n” option, where it shows you what it would do without doing it.
3