From 7b9fe2bfcc50237795cdfb5653908e01bdb19cd6 Mon Sep 17 00:00:00 2001 From: Cédric Picard Date: Mon, 12 May 2014 20:40:56 +0200 Subject: Initial commit - All works --- bulkrename | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 bulkrename (limited to 'bulkrename') diff --git a/bulkrename b/bulkrename new file mode 100755 index 0000000..70f2407 --- /dev/null +++ b/bulkrename @@ -0,0 +1,42 @@ +#!/bin/bash +# Copyright Cédric Picard 2014 -- License DWTFYW -- inspired by Ranger's + +set -e + +if [ $# -ne 0 ] ; then + for i in "$@" ; do printf "%s\n" "$i" ; done | "$0" + exit +fi + +[ -x "$(which "$EDITOR" 2>/dev/null)" ] || EDITOR=vi + +file=/tmp/blkrn-$$ +cat > ${file}.1 +exec /dev/tty + +cp ${file}.1 ${file}.2 +"$EDITOR" ${file}.2 + +line_count=$(wc -l < ${file}.1) +if [ $line_count -ne $(wc -l < ${file}.2) ] ; then + rm ${file}.1 ${file}.2 + echo "Wrong number of lines" >&2 + exit 1 +fi + +paste -d "\n" ${file}.1 ${file}.2 | while [ $line_count -ne 0 ] ; do + line_count=$(($line_count - 1)) + read -r input ; input="$(printf "%s" "$input" | sed "s/'/'\"'\"'/")" + read -r output ; output="$(printf "%s" "$output" | sed "s/'/'\"'\"'/")" + + if [ "$input" != "$output" ] ; then + echo "mv -v -- '$input' '$output'" + fi +done > ${file}.sh + +if [ "$(stat --printf="%s" ${file}.sh)" -ne 0 ] ; then + "$EDITOR" ${file}.sh + sh ${file}.sh +fi + +rm ${file}.1 ${file}.2 ${file}.sh -- cgit v1.2.3