Skip to content

Instantly share code, notes, and snippets.

@remram44
Created August 30, 2013 21:31
Show Gist options
  • Save remram44/6394470 to your computer and use it in GitHub Desktop.
Save remram44/6394470 to your computer and use it in GitHub Desktop.
#!/bin/sh
# rename.sh [-n] [-r] <regex> [file [...]]
notreally=
sedopts=
while getopts ":nr" opt ; do
case $opt in
n)
notreally=y
;;
r)
sedopts=-r
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
:)
echo "Option -$OPTARG requires an argument." >&2
;;
*)
echo "Arg: $opt" >&2
;;
esac
done
shift $(($OPTIND - 1))
if [ -z "$1" ] ; then
echo "No regex specified." >&2
exit 1
fi
regex=$1
shift
if [ -z "$notreally" ] ; then
while [ -n "$1" ] ; do
mv "$1" "$(echo "$1" | sed $sedopts "$regex")"
shift
done
else
while [ -n "$1" ] ; do
echo "\"$1\"" "->" "\"$(echo "$1" | sed $sedopts "$regex")\""
shift
done
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment