summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-09-25 00:12:02 +0200
committerhut <hut@lavabit.com>2011-09-25 00:12:02 +0200
commitad9ad4165984335607c6e3ce15192c6df50edcea (patch)
tree0061e29262afc5a609349676a3503393f138ff88 /ranger
parent66ffb461a35a23b0ac79b1d70db9034dae4bb233 (diff)
downloadranger-ad9ad4165984335607c6e3ce15192c6df50edcea.tar.gz
defaults.commands.py: added :bulkrename command from wiki
Diffstat (limited to 'ranger')
-rw-r--r--ranger/defaults/commands.py54
-rw-r--r--ranger/help/console.py5
2 files changed, 59 insertions, 0 deletions
diff --git a/ranger/defaults/commands.py b/ranger/defaults/commands.py
index 8ab9b353..cb39ddf9 100644
--- a/ranger/defaults/commands.py
+++ b/ranger/defaults/commands.py
@@ -684,6 +684,60 @@ class chmod(Command):
 			pass
 
 
+class bulkrename(Command):
+	"""
+	:bulkrename
+
+	This command opens a list of selected files in an external editor.
+	After you edit and save the file, it will generate a shell script
+	which does bulk renaming according to the changes you did in the file.
+
+	This shell script is opened in an editor for you to review.
+	After you close it, it will be executed.
+	"""
+	def execute(self):
+		import sys
+		import tempfile
+		from ranger.fsobject.file import File
+		from ranger.ext.shell_escape import shell_escape as esc
+		py3 = sys.version > "3"
+
+		# Create and edit the file list
+		filenames = [f.basename for f in self.fm.env.get_selection()]
+		listfile = tempfile.NamedTemporaryFile()
+
+		if py3:
+			listfile.write("\n".join(filenames).encode("utf-8"))
+		else:
+			listfile.write("\n".join(filenames))
+		listfile.flush()
+		self.fm.execute_file([File(listfile.name)], app='editor')
+		listfile.seek(0)
+		if py3:
+			new_filenames = listfile.read().decode("utf-8").split("\n")
+		else:
+			new_filenames = listfile.read().split("\n")
+		listfile.close()
+		if all(a == b for a, b in zip(filenames, new_filenames)):
+			self.fm.notify("No renaming to be done!")
+			return
+
+		# Generate and execute script
+		cmdfile = tempfile.NamedTemporaryFile()
+		cmdfile.write(b"# This file will be executed when you close the editor.\n")
+		cmdfile.write(b"# Please double-check everything, clear the file to abort.\n")
+		if py3:
+			cmdfile.write("\n".join("mv -vi " + esc(old) + " " + esc(new) \
+					for old, new in zip(filenames, new_filenames) if old != new).encode("utf-8"))
+		else:
+			cmdfile.write("\n".join("mv -vi " + esc(old) + " " + esc(new) \
+					for old, new in zip(filenames, new_filenames) if old != new))
+			cmdfile.flush()
+		self.fm.run(['vim', cmdfile.name])
+		self.fm.run(['/bin/sh', cmdfile.name], flags='w')
+		cmdfile.close()
+
+
 class filter(Command):
 	"""
 	:filter <string>
diff --git a/ranger/help/console.py b/ranger/help/console.py
index 2f3a75c8..7ae4df28 100644
--- a/ranger/help/console.py
+++ b/ranger/help/console.py
@@ -39,6 +39,11 @@ unambiguous name, e.g. ":chmod" can be written as ":ch" but not as ":c" since
 it conflicts with ":cd".
 
 
+:bulkrename
+      This command opens a list of selected files in an external editor.
+      After you edit and save the file, it will generate a shell script which
+      does bulk renaming according to the changes you did in the file.
+
 :cd <dirname>
       Changes the directory to <dirname>