An Ubuntu/Linux alternative of Bulk Rename Utility for Windows?

Clash Royale CLAN TAG#URR8PPP up vote
10
down vote
favorite
I have only spent 5 months with Ubuntu and it has been an awesome experience, I hardly boot into Windows now, but there are some things I miss, like the Bulk Rename Utility I used to have in Windows.
I use the program a lot when I boot into Windows but I'd prefer if there was an alternative or something similar cause the program had a plethora of renaming options with a decent gui.
I'm aware of the rename command in terminal, but I've never had any luck with it.
A screenshot of what it looks like:
Questions
- Is there an alternative of this program for Ubuntu?
- A great command line resource on how to get this done without a gui?
command-line nautilus batch-rename
add a comment |Â
up vote
10
down vote
favorite
I have only spent 5 months with Ubuntu and it has been an awesome experience, I hardly boot into Windows now, but there are some things I miss, like the Bulk Rename Utility I used to have in Windows.
I use the program a lot when I boot into Windows but I'd prefer if there was an alternative or something similar cause the program had a plethora of renaming options with a decent gui.
I'm aware of the rename command in terminal, but I've never had any luck with it.
A screenshot of what it looks like:
Questions
- Is there an alternative of this program for Ubuntu?
- A great command line resource on how to get this done without a gui?
command-line nautilus batch-rename
1
There's Thunar's Bulk Renaming utility, from XFCE: freesoftwaremagazine.com/articles/bulk_renaming_thunar
â muru
Aug 15 '14 at 18:13
1
Take a look at pyRenamer
â Mitchâ¦
Aug 15 '14 at 18:34
1
duplicate with askubuntu.com/questions/10607/â¦
â jet
Aug 15 '14 at 22:46
add a comment |Â
up vote
10
down vote
favorite
up vote
10
down vote
favorite
I have only spent 5 months with Ubuntu and it has been an awesome experience, I hardly boot into Windows now, but there are some things I miss, like the Bulk Rename Utility I used to have in Windows.
I use the program a lot when I boot into Windows but I'd prefer if there was an alternative or something similar cause the program had a plethora of renaming options with a decent gui.
I'm aware of the rename command in terminal, but I've never had any luck with it.
A screenshot of what it looks like:
Questions
- Is there an alternative of this program for Ubuntu?
- A great command line resource on how to get this done without a gui?
command-line nautilus batch-rename
I have only spent 5 months with Ubuntu and it has been an awesome experience, I hardly boot into Windows now, but there are some things I miss, like the Bulk Rename Utility I used to have in Windows.
I use the program a lot when I boot into Windows but I'd prefer if there was an alternative or something similar cause the program had a plethora of renaming options with a decent gui.
I'm aware of the rename command in terminal, but I've never had any luck with it.
A screenshot of what it looks like:
Questions
- Is there an alternative of this program for Ubuntu?
- A great command line resource on how to get this done without a gui?
command-line nautilus batch-rename
command-line nautilus batch-rename
edited Mar 2 at 9:49
muru
130k19273463
130k19273463
asked Aug 15 '14 at 18:04
Feyisayo Sonubi
1731211
1731211
1
There's Thunar's Bulk Renaming utility, from XFCE: freesoftwaremagazine.com/articles/bulk_renaming_thunar
â muru
Aug 15 '14 at 18:13
1
Take a look at pyRenamer
â Mitchâ¦
Aug 15 '14 at 18:34
1
duplicate with askubuntu.com/questions/10607/â¦
â jet
Aug 15 '14 at 22:46
add a comment |Â
1
There's Thunar's Bulk Renaming utility, from XFCE: freesoftwaremagazine.com/articles/bulk_renaming_thunar
â muru
Aug 15 '14 at 18:13
1
Take a look at pyRenamer
â Mitchâ¦
Aug 15 '14 at 18:34
1
duplicate with askubuntu.com/questions/10607/â¦
â jet
Aug 15 '14 at 22:46
1
1
There's Thunar's Bulk Renaming utility, from XFCE: freesoftwaremagazine.com/articles/bulk_renaming_thunar
â muru
Aug 15 '14 at 18:13
There's Thunar's Bulk Renaming utility, from XFCE: freesoftwaremagazine.com/articles/bulk_renaming_thunar
â muru
Aug 15 '14 at 18:13
1
1
Take a look at pyRenamer
â Mitchâ¦
Aug 15 '14 at 18:34
Take a look at pyRenamer
â Mitchâ¦
Aug 15 '14 at 18:34
1
1
duplicate with askubuntu.com/questions/10607/â¦
â jet
Aug 15 '14 at 22:46
duplicate with askubuntu.com/questions/10607/â¦
â jet
Aug 15 '14 at 22:46
add a comment |Â
7 Answers
7
active
oldest
votes
up vote
17
down vote
But... But... You've already found the answer... rename really is the best thing since sliced bread. If you need some examples of it doing really cool things, I've written a few in my time here:
Simple replacement (another example: Changing extensions)- Zero-padding existing numbers
- Shunting existing parts of a filename around
- Rewriting entire directory structures
- Inserting the creation/modified date from each file
If you need specific help, ask and somebody here can deliver.
Failing that simple Bash scripting is an option in most cases.
Sidebar: I defy anybody to call rename or regular expressions complicated after you've seen the screenshot of Bulk Rename Utility. Holy balls, I almost forgot how ugly it was.
For one. BRU might be ugly, but it doesn't require remembering and escaping a syntax that compares unfavorably to serial line noise.
â Mikey T.K.
Mar 31 at 20:17
add a comment |Â
up vote
7
down vote
There is the Bulk Rename utility, which is part of Thunar, the default file manager of XFCE desktop environment (the one used by Xubuntu). Selecting multiple files in Thunar and selecting "rename" opens the tool, but it can also be started separately.

It has different options of action, which together may come close to those of the Windows tool.
This documentation may be of help.
Some details also here (mentioning other tools too).

If you prefer to use a different file manager, you may still use this tool. It cannot be installed separately from Thunar but the latter brings very few specific dependencies and can be installed easily. The tool can be started separately though, and can even be integrated as a custom menu action in other files managers like Dolphin and Nautilus.
Example for Dolphin: create the file ~/.local/share/kservices5/bulk-rename-thunar.desktop with these lines:
[Desktop Entry]
Type=Service
ServiceTypes=KonqPopupMenu/Plugin
MimeType=all/all;
Actions=BulkRename;
X-KDE-StartupNotify=false
X-KDE-Priority=TopLevel
[Desktop Action BulkRename]
Name=Bulk Rename
Exec=thunar -B %U
Icon=dialog-information
1
A great advantage of this tool is that it can operate on files directly (unlike pyrenamer and metamorphose2 which can only select folder paths and therefore cannot be used with a context menu action) and then it opens a list of files that can be modified by drag & drop etc. A disadvantage is that it lacks an undo option.
â cipricus
Mar 2 at 11:07
@cipricus thank you for the added info (almost should be communtiy wiki....). Sadly think the undo option is backing up!
â Wilf
Mar 2 at 15:39
bugzilla.xfce.org/show_bug.cgi?id=14257
â cipricus
Mar 2 at 15:53
add a comment |Â
up vote
5
down vote
Pyrenamer is my tool of choice. It's straightforward to use and has a preview mode.
sudo apt-get install pyrenamer
More details from here:


The same problem as with metamorphose2 mentioned in my answer: it cannot access only some files directly, but needs a folder path in which then files need to be selected; but selecting only some files to be renamed out of tens or hundreds is very difficult. A solution would be to put the files concerned into a separate folder before using this.
â cipricus
Mar 2 at 10:55
add a comment |Â
up vote
4
down vote
GPRename and pyRenamer are available in the repositories. Both are similar and easy to use, although pyRenamer is a dead project.
add a comment |Â
up vote
2
down vote
I have found a lot of details on tools already mentioned under this question at http://www.webupd8.org/2016/03/quickly-batch-rename-files-in-linux.html, and I have edited the answers mentioning them in order to add such details.
There is another tool mentioned there that seems the most advanced:
Metamorphose2
Here's its presentation at the above address:


sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install metamorphose2
I have used Thunar bulk rename for a long time but the above is much more complex and has a feature that I was missing, the option to undo changes.
This tool seem less intuitive and complicated for simple operations. (A great advantage of the Bulk Rename tool in Thunar is the ability of having a list of files outside the file manager that can be modified easily by drag&drop.)
But once you understand how it works it can be useful.
A few tips:
You are supposed to first select the "Picker" tab. But by default all files and folders (of the selected path) are selected and, if you do not want to rename them all, you have to un-select them all by clicking "none" and then select them one by one with single-left-click. (I find this annoying, and prefer to put all files that need renaming in a separate folder, and then select the "Picker" tab. - As far as I can tell, that would be the way to go for the Windows tool mentioned in the question either, as its behavior is similar.)
Once the files are selected, go to the "Renamer" tab and select one of the "Available" actions by double-clicking it. It all becomes available from this point forward.
For what it's worth - the Windows program Bulk Rename Utility works fine in Wine/Playonlinux.
BRU does indeed work well under Wine. Thanks for pointing that out! :)
â DÃÂvïd
Apr 14 at 13:41
add a comment |Â
up vote
1
down vote
You may want to check this one: rnm (web page).
Some Usage:
rnm file-name -ns new-filename # signle file
rnm ./* -ns '/fn//i/' # files will be sorted and indexed.
rnm ./* -rs '/search/new/g' # 'search' in filenames will be replaced with 'new'
rnm ./* -ns '/fn//i/' -ss 'search' # only files/directories which contain 'search' in their name will be indexed (renamed).
rnm ./* -ns '/fn//id/' -fo # file only mode, directories will be ignored.
rnm ./* -ns '/fn//id/' -fo -dp -1 # recursive to subdirectories all the way.
etc...
To undo an unwanted rename:
rnm -u
You can find more examples/docs here.
add a comment |Â
up vote
1
down vote
Bulk rename utility does work with linux via wine. But it get hangs on certain operations. We will get used to it and we will automatically skip doing such operations after familiarizing them. I am very satisfied with it.
add a comment |Â
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
17
down vote
But... But... You've already found the answer... rename really is the best thing since sliced bread. If you need some examples of it doing really cool things, I've written a few in my time here:
Simple replacement (another example: Changing extensions)- Zero-padding existing numbers
- Shunting existing parts of a filename around
- Rewriting entire directory structures
- Inserting the creation/modified date from each file
If you need specific help, ask and somebody here can deliver.
Failing that simple Bash scripting is an option in most cases.
Sidebar: I defy anybody to call rename or regular expressions complicated after you've seen the screenshot of Bulk Rename Utility. Holy balls, I almost forgot how ugly it was.
For one. BRU might be ugly, but it doesn't require remembering and escaping a syntax that compares unfavorably to serial line noise.
â Mikey T.K.
Mar 31 at 20:17
add a comment |Â
up vote
17
down vote
But... But... You've already found the answer... rename really is the best thing since sliced bread. If you need some examples of it doing really cool things, I've written a few in my time here:
Simple replacement (another example: Changing extensions)- Zero-padding existing numbers
- Shunting existing parts of a filename around
- Rewriting entire directory structures
- Inserting the creation/modified date from each file
If you need specific help, ask and somebody here can deliver.
Failing that simple Bash scripting is an option in most cases.
Sidebar: I defy anybody to call rename or regular expressions complicated after you've seen the screenshot of Bulk Rename Utility. Holy balls, I almost forgot how ugly it was.
For one. BRU might be ugly, but it doesn't require remembering and escaping a syntax that compares unfavorably to serial line noise.
â Mikey T.K.
Mar 31 at 20:17
add a comment |Â
up vote
17
down vote
up vote
17
down vote
But... But... You've already found the answer... rename really is the best thing since sliced bread. If you need some examples of it doing really cool things, I've written a few in my time here:
Simple replacement (another example: Changing extensions)- Zero-padding existing numbers
- Shunting existing parts of a filename around
- Rewriting entire directory structures
- Inserting the creation/modified date from each file
If you need specific help, ask and somebody here can deliver.
Failing that simple Bash scripting is an option in most cases.
Sidebar: I defy anybody to call rename or regular expressions complicated after you've seen the screenshot of Bulk Rename Utility. Holy balls, I almost forgot how ugly it was.
But... But... You've already found the answer... rename really is the best thing since sliced bread. If you need some examples of it doing really cool things, I've written a few in my time here:
Simple replacement (another example: Changing extensions)- Zero-padding existing numbers
- Shunting existing parts of a filename around
- Rewriting entire directory structures
- Inserting the creation/modified date from each file
If you need specific help, ask and somebody here can deliver.
Failing that simple Bash scripting is an option in most cases.
Sidebar: I defy anybody to call rename or regular expressions complicated after you've seen the screenshot of Bulk Rename Utility. Holy balls, I almost forgot how ugly it was.
edited Apr 13 '17 at 12:23
Communityâ¦
1
1
answered Aug 15 '14 at 18:14
Oliâ¦
215k84544752
215k84544752
For one. BRU might be ugly, but it doesn't require remembering and escaping a syntax that compares unfavorably to serial line noise.
â Mikey T.K.
Mar 31 at 20:17
add a comment |Â
For one. BRU might be ugly, but it doesn't require remembering and escaping a syntax that compares unfavorably to serial line noise.
â Mikey T.K.
Mar 31 at 20:17
For one. BRU might be ugly, but it doesn't require remembering and escaping a syntax that compares unfavorably to serial line noise.
â Mikey T.K.
Mar 31 at 20:17
For one. BRU might be ugly, but it doesn't require remembering and escaping a syntax that compares unfavorably to serial line noise.
â Mikey T.K.
Mar 31 at 20:17
add a comment |Â
up vote
7
down vote
There is the Bulk Rename utility, which is part of Thunar, the default file manager of XFCE desktop environment (the one used by Xubuntu). Selecting multiple files in Thunar and selecting "rename" opens the tool, but it can also be started separately.

It has different options of action, which together may come close to those of the Windows tool.
This documentation may be of help.
Some details also here (mentioning other tools too).

If you prefer to use a different file manager, you may still use this tool. It cannot be installed separately from Thunar but the latter brings very few specific dependencies and can be installed easily. The tool can be started separately though, and can even be integrated as a custom menu action in other files managers like Dolphin and Nautilus.
Example for Dolphin: create the file ~/.local/share/kservices5/bulk-rename-thunar.desktop with these lines:
[Desktop Entry]
Type=Service
ServiceTypes=KonqPopupMenu/Plugin
MimeType=all/all;
Actions=BulkRename;
X-KDE-StartupNotify=false
X-KDE-Priority=TopLevel
[Desktop Action BulkRename]
Name=Bulk Rename
Exec=thunar -B %U
Icon=dialog-information
1
A great advantage of this tool is that it can operate on files directly (unlike pyrenamer and metamorphose2 which can only select folder paths and therefore cannot be used with a context menu action) and then it opens a list of files that can be modified by drag & drop etc. A disadvantage is that it lacks an undo option.
â cipricus
Mar 2 at 11:07
@cipricus thank you for the added info (almost should be communtiy wiki....). Sadly think the undo option is backing up!
â Wilf
Mar 2 at 15:39
bugzilla.xfce.org/show_bug.cgi?id=14257
â cipricus
Mar 2 at 15:53
add a comment |Â
up vote
7
down vote
There is the Bulk Rename utility, which is part of Thunar, the default file manager of XFCE desktop environment (the one used by Xubuntu). Selecting multiple files in Thunar and selecting "rename" opens the tool, but it can also be started separately.

It has different options of action, which together may come close to those of the Windows tool.
This documentation may be of help.
Some details also here (mentioning other tools too).

If you prefer to use a different file manager, you may still use this tool. It cannot be installed separately from Thunar but the latter brings very few specific dependencies and can be installed easily. The tool can be started separately though, and can even be integrated as a custom menu action in other files managers like Dolphin and Nautilus.
Example for Dolphin: create the file ~/.local/share/kservices5/bulk-rename-thunar.desktop with these lines:
[Desktop Entry]
Type=Service
ServiceTypes=KonqPopupMenu/Plugin
MimeType=all/all;
Actions=BulkRename;
X-KDE-StartupNotify=false
X-KDE-Priority=TopLevel
[Desktop Action BulkRename]
Name=Bulk Rename
Exec=thunar -B %U
Icon=dialog-information
1
A great advantage of this tool is that it can operate on files directly (unlike pyrenamer and metamorphose2 which can only select folder paths and therefore cannot be used with a context menu action) and then it opens a list of files that can be modified by drag & drop etc. A disadvantage is that it lacks an undo option.
â cipricus
Mar 2 at 11:07
@cipricus thank you for the added info (almost should be communtiy wiki....). Sadly think the undo option is backing up!
â Wilf
Mar 2 at 15:39
bugzilla.xfce.org/show_bug.cgi?id=14257
â cipricus
Mar 2 at 15:53
add a comment |Â
up vote
7
down vote
up vote
7
down vote
There is the Bulk Rename utility, which is part of Thunar, the default file manager of XFCE desktop environment (the one used by Xubuntu). Selecting multiple files in Thunar and selecting "rename" opens the tool, but it can also be started separately.

It has different options of action, which together may come close to those of the Windows tool.
This documentation may be of help.
Some details also here (mentioning other tools too).

If you prefer to use a different file manager, you may still use this tool. It cannot be installed separately from Thunar but the latter brings very few specific dependencies and can be installed easily. The tool can be started separately though, and can even be integrated as a custom menu action in other files managers like Dolphin and Nautilus.
Example for Dolphin: create the file ~/.local/share/kservices5/bulk-rename-thunar.desktop with these lines:
[Desktop Entry]
Type=Service
ServiceTypes=KonqPopupMenu/Plugin
MimeType=all/all;
Actions=BulkRename;
X-KDE-StartupNotify=false
X-KDE-Priority=TopLevel
[Desktop Action BulkRename]
Name=Bulk Rename
Exec=thunar -B %U
Icon=dialog-information
There is the Bulk Rename utility, which is part of Thunar, the default file manager of XFCE desktop environment (the one used by Xubuntu). Selecting multiple files in Thunar and selecting "rename" opens the tool, but it can also be started separately.

It has different options of action, which together may come close to those of the Windows tool.
This documentation may be of help.
Some details also here (mentioning other tools too).

If you prefer to use a different file manager, you may still use this tool. It cannot be installed separately from Thunar but the latter brings very few specific dependencies and can be installed easily. The tool can be started separately though, and can even be integrated as a custom menu action in other files managers like Dolphin and Nautilus.
Example for Dolphin: create the file ~/.local/share/kservices5/bulk-rename-thunar.desktop with these lines:
[Desktop Entry]
Type=Service
ServiceTypes=KonqPopupMenu/Plugin
MimeType=all/all;
Actions=BulkRename;
X-KDE-StartupNotify=false
X-KDE-Priority=TopLevel
[Desktop Action BulkRename]
Name=Bulk Rename
Exec=thunar -B %U
Icon=dialog-information
edited Mar 2 at 9:31
cipricus
9,31745166332
9,31745166332
answered Aug 15 '14 at 18:15
Wilf
20.4k966125
20.4k966125
1
A great advantage of this tool is that it can operate on files directly (unlike pyrenamer and metamorphose2 which can only select folder paths and therefore cannot be used with a context menu action) and then it opens a list of files that can be modified by drag & drop etc. A disadvantage is that it lacks an undo option.
â cipricus
Mar 2 at 11:07
@cipricus thank you for the added info (almost should be communtiy wiki....). Sadly think the undo option is backing up!
â Wilf
Mar 2 at 15:39
bugzilla.xfce.org/show_bug.cgi?id=14257
â cipricus
Mar 2 at 15:53
add a comment |Â
1
A great advantage of this tool is that it can operate on files directly (unlike pyrenamer and metamorphose2 which can only select folder paths and therefore cannot be used with a context menu action) and then it opens a list of files that can be modified by drag & drop etc. A disadvantage is that it lacks an undo option.
â cipricus
Mar 2 at 11:07
@cipricus thank you for the added info (almost should be communtiy wiki....). Sadly think the undo option is backing up!
â Wilf
Mar 2 at 15:39
bugzilla.xfce.org/show_bug.cgi?id=14257
â cipricus
Mar 2 at 15:53
1
1
A great advantage of this tool is that it can operate on files directly (unlike pyrenamer and metamorphose2 which can only select folder paths and therefore cannot be used with a context menu action) and then it opens a list of files that can be modified by drag & drop etc. A disadvantage is that it lacks an undo option.
â cipricus
Mar 2 at 11:07
A great advantage of this tool is that it can operate on files directly (unlike pyrenamer and metamorphose2 which can only select folder paths and therefore cannot be used with a context menu action) and then it opens a list of files that can be modified by drag & drop etc. A disadvantage is that it lacks an undo option.
â cipricus
Mar 2 at 11:07
@cipricus thank you for the added info (almost should be communtiy wiki....). Sadly think the undo option is backing up!
â Wilf
Mar 2 at 15:39
@cipricus thank you for the added info (almost should be communtiy wiki....). Sadly think the undo option is backing up!
â Wilf
Mar 2 at 15:39
bugzilla.xfce.org/show_bug.cgi?id=14257
â cipricus
Mar 2 at 15:53
bugzilla.xfce.org/show_bug.cgi?id=14257
â cipricus
Mar 2 at 15:53
add a comment |Â
up vote
5
down vote
Pyrenamer is my tool of choice. It's straightforward to use and has a preview mode.
sudo apt-get install pyrenamer
More details from here:


The same problem as with metamorphose2 mentioned in my answer: it cannot access only some files directly, but needs a folder path in which then files need to be selected; but selecting only some files to be renamed out of tens or hundreds is very difficult. A solution would be to put the files concerned into a separate folder before using this.
â cipricus
Mar 2 at 10:55
add a comment |Â
up vote
5
down vote
Pyrenamer is my tool of choice. It's straightforward to use and has a preview mode.
sudo apt-get install pyrenamer
More details from here:


The same problem as with metamorphose2 mentioned in my answer: it cannot access only some files directly, but needs a folder path in which then files need to be selected; but selecting only some files to be renamed out of tens or hundreds is very difficult. A solution would be to put the files concerned into a separate folder before using this.
â cipricus
Mar 2 at 10:55
add a comment |Â
up vote
5
down vote
up vote
5
down vote
Pyrenamer is my tool of choice. It's straightforward to use and has a preview mode.
sudo apt-get install pyrenamer
More details from here:


Pyrenamer is my tool of choice. It's straightforward to use and has a preview mode.
sudo apt-get install pyrenamer
More details from here:


edited Mar 2 at 9:48
cipricus
9,31745166332
9,31745166332
answered Oct 14 '15 at 15:33
WhiteHotaru
5113
5113
The same problem as with metamorphose2 mentioned in my answer: it cannot access only some files directly, but needs a folder path in which then files need to be selected; but selecting only some files to be renamed out of tens or hundreds is very difficult. A solution would be to put the files concerned into a separate folder before using this.
â cipricus
Mar 2 at 10:55
add a comment |Â
The same problem as with metamorphose2 mentioned in my answer: it cannot access only some files directly, but needs a folder path in which then files need to be selected; but selecting only some files to be renamed out of tens or hundreds is very difficult. A solution would be to put the files concerned into a separate folder before using this.
â cipricus
Mar 2 at 10:55
The same problem as with metamorphose2 mentioned in my answer: it cannot access only some files directly, but needs a folder path in which then files need to be selected; but selecting only some files to be renamed out of tens or hundreds is very difficult. A solution would be to put the files concerned into a separate folder before using this.
â cipricus
Mar 2 at 10:55
The same problem as with metamorphose2 mentioned in my answer: it cannot access only some files directly, but needs a folder path in which then files need to be selected; but selecting only some files to be renamed out of tens or hundreds is very difficult. A solution would be to put the files concerned into a separate folder before using this.
â cipricus
Mar 2 at 10:55
add a comment |Â
up vote
4
down vote
GPRename and pyRenamer are available in the repositories. Both are similar and easy to use, although pyRenamer is a dead project.
add a comment |Â
up vote
4
down vote
GPRename and pyRenamer are available in the repositories. Both are similar and easy to use, although pyRenamer is a dead project.
add a comment |Â
up vote
4
down vote
up vote
4
down vote
GPRename and pyRenamer are available in the repositories. Both are similar and easy to use, although pyRenamer is a dead project.
GPRename and pyRenamer are available in the repositories. Both are similar and easy to use, although pyRenamer is a dead project.
answered Aug 15 '14 at 19:55
masantamaria
614
614
add a comment |Â
add a comment |Â
up vote
2
down vote
I have found a lot of details on tools already mentioned under this question at http://www.webupd8.org/2016/03/quickly-batch-rename-files-in-linux.html, and I have edited the answers mentioning them in order to add such details.
There is another tool mentioned there that seems the most advanced:
Metamorphose2
Here's its presentation at the above address:


sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install metamorphose2
I have used Thunar bulk rename for a long time but the above is much more complex and has a feature that I was missing, the option to undo changes.
This tool seem less intuitive and complicated for simple operations. (A great advantage of the Bulk Rename tool in Thunar is the ability of having a list of files outside the file manager that can be modified easily by drag&drop.)
But once you understand how it works it can be useful.
A few tips:
You are supposed to first select the "Picker" tab. But by default all files and folders (of the selected path) are selected and, if you do not want to rename them all, you have to un-select them all by clicking "none" and then select them one by one with single-left-click. (I find this annoying, and prefer to put all files that need renaming in a separate folder, and then select the "Picker" tab. - As far as I can tell, that would be the way to go for the Windows tool mentioned in the question either, as its behavior is similar.)
Once the files are selected, go to the "Renamer" tab and select one of the "Available" actions by double-clicking it. It all becomes available from this point forward.
For what it's worth - the Windows program Bulk Rename Utility works fine in Wine/Playonlinux.
BRU does indeed work well under Wine. Thanks for pointing that out! :)
â DÃÂvïd
Apr 14 at 13:41
add a comment |Â
up vote
2
down vote
I have found a lot of details on tools already mentioned under this question at http://www.webupd8.org/2016/03/quickly-batch-rename-files-in-linux.html, and I have edited the answers mentioning them in order to add such details.
There is another tool mentioned there that seems the most advanced:
Metamorphose2
Here's its presentation at the above address:


sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install metamorphose2
I have used Thunar bulk rename for a long time but the above is much more complex and has a feature that I was missing, the option to undo changes.
This tool seem less intuitive and complicated for simple operations. (A great advantage of the Bulk Rename tool in Thunar is the ability of having a list of files outside the file manager that can be modified easily by drag&drop.)
But once you understand how it works it can be useful.
A few tips:
You are supposed to first select the "Picker" tab. But by default all files and folders (of the selected path) are selected and, if you do not want to rename them all, you have to un-select them all by clicking "none" and then select them one by one with single-left-click. (I find this annoying, and prefer to put all files that need renaming in a separate folder, and then select the "Picker" tab. - As far as I can tell, that would be the way to go for the Windows tool mentioned in the question either, as its behavior is similar.)
Once the files are selected, go to the "Renamer" tab and select one of the "Available" actions by double-clicking it. It all becomes available from this point forward.
For what it's worth - the Windows program Bulk Rename Utility works fine in Wine/Playonlinux.
BRU does indeed work well under Wine. Thanks for pointing that out! :)
â DÃÂvïd
Apr 14 at 13:41
add a comment |Â
up vote
2
down vote
up vote
2
down vote
I have found a lot of details on tools already mentioned under this question at http://www.webupd8.org/2016/03/quickly-batch-rename-files-in-linux.html, and I have edited the answers mentioning them in order to add such details.
There is another tool mentioned there that seems the most advanced:
Metamorphose2
Here's its presentation at the above address:


sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install metamorphose2
I have used Thunar bulk rename for a long time but the above is much more complex and has a feature that I was missing, the option to undo changes.
This tool seem less intuitive and complicated for simple operations. (A great advantage of the Bulk Rename tool in Thunar is the ability of having a list of files outside the file manager that can be modified easily by drag&drop.)
But once you understand how it works it can be useful.
A few tips:
You are supposed to first select the "Picker" tab. But by default all files and folders (of the selected path) are selected and, if you do not want to rename them all, you have to un-select them all by clicking "none" and then select them one by one with single-left-click. (I find this annoying, and prefer to put all files that need renaming in a separate folder, and then select the "Picker" tab. - As far as I can tell, that would be the way to go for the Windows tool mentioned in the question either, as its behavior is similar.)
Once the files are selected, go to the "Renamer" tab and select one of the "Available" actions by double-clicking it. It all becomes available from this point forward.
For what it's worth - the Windows program Bulk Rename Utility works fine in Wine/Playonlinux.
I have found a lot of details on tools already mentioned under this question at http://www.webupd8.org/2016/03/quickly-batch-rename-files-in-linux.html, and I have edited the answers mentioning them in order to add such details.
There is another tool mentioned there that seems the most advanced:
Metamorphose2
Here's its presentation at the above address:


sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install metamorphose2
I have used Thunar bulk rename for a long time but the above is much more complex and has a feature that I was missing, the option to undo changes.
This tool seem less intuitive and complicated for simple operations. (A great advantage of the Bulk Rename tool in Thunar is the ability of having a list of files outside the file manager that can be modified easily by drag&drop.)
But once you understand how it works it can be useful.
A few tips:
You are supposed to first select the "Picker" tab. But by default all files and folders (of the selected path) are selected and, if you do not want to rename them all, you have to un-select them all by clicking "none" and then select them one by one with single-left-click. (I find this annoying, and prefer to put all files that need renaming in a separate folder, and then select the "Picker" tab. - As far as I can tell, that would be the way to go for the Windows tool mentioned in the question either, as its behavior is similar.)
Once the files are selected, go to the "Renamer" tab and select one of the "Available" actions by double-clicking it. It all becomes available from this point forward.
For what it's worth - the Windows program Bulk Rename Utility works fine in Wine/Playonlinux.
edited Mar 5 at 22:42
answered Mar 2 at 10:00
cipricus
9,31745166332
9,31745166332
BRU does indeed work well under Wine. Thanks for pointing that out! :)
â DÃÂvïd
Apr 14 at 13:41
add a comment |Â
BRU does indeed work well under Wine. Thanks for pointing that out! :)
â DÃÂvïd
Apr 14 at 13:41
BRU does indeed work well under Wine. Thanks for pointing that out! :)
â DÃÂvïd
Apr 14 at 13:41
BRU does indeed work well under Wine. Thanks for pointing that out! :)
â DÃÂvïd
Apr 14 at 13:41
add a comment |Â
up vote
1
down vote
You may want to check this one: rnm (web page).
Some Usage:
rnm file-name -ns new-filename # signle file
rnm ./* -ns '/fn//i/' # files will be sorted and indexed.
rnm ./* -rs '/search/new/g' # 'search' in filenames will be replaced with 'new'
rnm ./* -ns '/fn//i/' -ss 'search' # only files/directories which contain 'search' in their name will be indexed (renamed).
rnm ./* -ns '/fn//id/' -fo # file only mode, directories will be ignored.
rnm ./* -ns '/fn//id/' -fo -dp -1 # recursive to subdirectories all the way.
etc...
To undo an unwanted rename:
rnm -u
You can find more examples/docs here.
add a comment |Â
up vote
1
down vote
You may want to check this one: rnm (web page).
Some Usage:
rnm file-name -ns new-filename # signle file
rnm ./* -ns '/fn//i/' # files will be sorted and indexed.
rnm ./* -rs '/search/new/g' # 'search' in filenames will be replaced with 'new'
rnm ./* -ns '/fn//i/' -ss 'search' # only files/directories which contain 'search' in their name will be indexed (renamed).
rnm ./* -ns '/fn//id/' -fo # file only mode, directories will be ignored.
rnm ./* -ns '/fn//id/' -fo -dp -1 # recursive to subdirectories all the way.
etc...
To undo an unwanted rename:
rnm -u
You can find more examples/docs here.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
You may want to check this one: rnm (web page).
Some Usage:
rnm file-name -ns new-filename # signle file
rnm ./* -ns '/fn//i/' # files will be sorted and indexed.
rnm ./* -rs '/search/new/g' # 'search' in filenames will be replaced with 'new'
rnm ./* -ns '/fn//i/' -ss 'search' # only files/directories which contain 'search' in their name will be indexed (renamed).
rnm ./* -ns '/fn//id/' -fo # file only mode, directories will be ignored.
rnm ./* -ns '/fn//id/' -fo -dp -1 # recursive to subdirectories all the way.
etc...
To undo an unwanted rename:
rnm -u
You can find more examples/docs here.
You may want to check this one: rnm (web page).
Some Usage:
rnm file-name -ns new-filename # signle file
rnm ./* -ns '/fn//i/' # files will be sorted and indexed.
rnm ./* -rs '/search/new/g' # 'search' in filenames will be replaced with 'new'
rnm ./* -ns '/fn//i/' -ss 'search' # only files/directories which contain 'search' in their name will be indexed (renamed).
rnm ./* -ns '/fn//id/' -fo # file only mode, directories will be ignored.
rnm ./* -ns '/fn//id/' -fo -dp -1 # recursive to subdirectories all the way.
etc...
To undo an unwanted rename:
rnm -u
You can find more examples/docs here.
edited Nov 2 '15 at 19:05
answered Oct 14 '15 at 15:24
Jahid
26728
26728
add a comment |Â
add a comment |Â
up vote
1
down vote
Bulk rename utility does work with linux via wine. But it get hangs on certain operations. We will get used to it and we will automatically skip doing such operations after familiarizing them. I am very satisfied with it.
add a comment |Â
up vote
1
down vote
Bulk rename utility does work with linux via wine. But it get hangs on certain operations. We will get used to it and we will automatically skip doing such operations after familiarizing them. I am very satisfied with it.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Bulk rename utility does work with linux via wine. But it get hangs on certain operations. We will get used to it and we will automatically skip doing such operations after familiarizing them. I am very satisfied with it.
Bulk rename utility does work with linux via wine. But it get hangs on certain operations. We will get used to it and we will automatically skip doing such operations after familiarizing them. I am very satisfied with it.
answered Dec 15 '15 at 6:45
Iron Heart
7111
7111
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f511862%2fan-ubuntu-linux-alternative-of-bulk-rename-utility-for-windows%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
There's Thunar's Bulk Renaming utility, from XFCE: freesoftwaremagazine.com/articles/bulk_renaming_thunar
â muru
Aug 15 '14 at 18:13
1
Take a look at pyRenamer
â Mitchâ¦
Aug 15 '14 at 18:34
1
duplicate with askubuntu.com/questions/10607/â¦
â jet
Aug 15 '14 at 22:46