How is this not functional yet? It's 2014, that is half-past the future, and we still can not select and rename multiple files at once in Nemo (v2.0.8).
http://imgur.com/cXjFCls
While it's true there is no native functionality yet, you can easily install a 3rd party bulk renamer, set a command line in Nemo's preferences for bulk renaming, then it will work.
Thank you for reply.
Are there any plans for enabling native functionality?
We definitely want it (it stinks you have to install something like dolphin to add the bulk rename ability to nemo) - just haven't had the time.
I try to use pyrenamer and gprename ,and they can work as nemo-action,
But can anyone tell me how to write command line here in (behavior -> command to invoke when renaming multiple items:) [I tried pyrenamer %P or pyrenamer pwd, but not work].
Great to hear the devs want it too.
I am using the renamer that comes with Thunar (yes, you can only open the renamer GUI without Thunar itself from Nemo). Works well and multiple file selection works too.
Instructions: http://forums.linuxmint.com/viewtopic.php?f=29&t=162435#p857689
Any news?
In gnome 3.22 nautilus gained support for renaming multiple files, couldn't test this by now, but if it's well made maybe this could be ported from there?
@ManIVIctorious It would require un-headerbaring given Nemo's UI, but it should be possible, not a dev here, but I'd guess it'd work given that (I think) Nemo's a fork of Nautilus anyway
Many thanks for contributing to Nemo. Your suggestion was reviewed.
For more information on our workflow and feature requests, read https://linuxmint-troubleshooting-guide.readthedocs.io/en/latest/faq.html.
I really think nemo devs should reconsider this. Almost all file managers can mass rename files featuring many options (numbering, date, text replace etc.). Nemo can't out of the box mass rename files and users must install another file manager and set nemo to use the other file manager to mass rename files.

I refuse to install another file manager just to bulk rename, that just shows failure of Nemo
Create an extension and that is fine, installing a complete file manager is not.
See https://mintguide.org/tools/596-pyrenamer-mass-rename-files-and-folders-in-linux.html for a GUI program.
Don't expect Nemo to do all possible things with the word "file" in them...
pyrenamer is a dead project - not available in Mint 19 or 20.
You can use gprename with a wrapper script to get over gprename's dislike for URI format file paths.
1) Install gprename
apt install gprename
2) Create wrapper script
sudo tee /usr/local/bin/gprename-nemo <<'EOB'
#!/bin/bash
function urldecode() { : "${*//+/ }"; echo -e "${_//%/\\x}"; }
filePath=$(urldecode "$1")
gprename "$(dirname "$filePath")"
EOB
3) Make wrapper script executable
sudo chmod +x /usr/local/bin/gprename-nemo
4) Set gprename-nemo as the bulk-renamer
dconf write /org/nemo/preferences/bulk-rename-tool "b'gprename-nemo'"
Most helpful comment
I really think nemo devs should reconsider this. Almost all file managers can mass rename files featuring many options (numbering, date, text replace etc.). Nemo can't out of the box mass rename files and users must install another file manager and set nemo to use the other file manager to mass rename files.