Skip to content

Instantly share code, notes, and snippets.

@adamgell
Forked from ohhdemgirls/rename.sh
Created January 25, 2014 03:43
Show Gist options
  • Save adamgell/8611506 to your computer and use it in GitHub Desktop.
Save adamgell/8611506 to your computer and use it in GitHub Desktop.
#!/bin/bash
for f in *.html;
do
title=$( awk 'BEGIN{IGNORECASE=1;FS="<title>|</title>";RS=EOF} {print $2}' "$f" )
mv -i "$f" "${title//[^a-zA-Z0-9\._\- ]}".html
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment