I have been trying to figure out how to rename files for the past few hours.
I have 2000 files that are like this:
file.1.pdb
file.2.pdb
file.3.pdb
I would like to rename these files to something like:
file.pdb.1
file.pdb.2
file.pdb.3
I have been trying to figure out how to rename files for the past few hours.
I have 2000 files that are like this:
file.1.pdb
file.2.pdb
file.3.pdb
I would like to rename these files to something like:
file.pdb.1
file.pdb.2
file.pdb.3
If you have
rename
installed, you can useThe command
rename
can be installed viaUsing Perl
rename
:Quick explanation:
*.pdb
Match all files that end with.pdb
. (Done by the shell)(\.\d+)
Match a literal dot, then one or more decimal digits. The parens create a match group.$2$1
Reverse the first and second match groups.-n
No action (simulate). If the output looks good, run the command again without this flag.Through
mmv
(rename multiple files by wildcard patterns) it's mush easy:or
zmv
ofzsh
shell; it's a module that allows to do rename; see ZMV-Examples:You can use this script:
Or this copy-paste friendly command:
For use above commands, put all 2000 files in one folder and then open terminal in that directory, then run above command in it.
Recently nautilus, the default file manager, received a batch rename dialog. It is not yet powerful enough to do what you want. But luckily there is thunar, an alternative file manager that can be installed. With thunars rename dialog you can do what you want using the GUI.
First install thunar:
Start thunar, navigate to the directory that has your files. Then select all of them. Press F2.
In the dialog that opens, again, select all files. Change mode to "Search & Replace" and to "Name & Suffix". Check "Regular Expression". Now use the following as search and replace patterns:
and
Finally click the rename button.
The advantage of this way is that you get a visual preview of what will happen before you actually do the renaming.
You can use
rename
fromutil-linux
for this (the command is calledrename.ul
in ubuntu):This first removes the
.pdb
extension from the end and then re-inserts it into the middle.