Skip to content

Instantly share code, notes, and snippets.

@ohhdemgirls
Last active January 4, 2016 10:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ohhdemgirls/8611495 to your computer and use it in GitHub Desktop.
Save ohhdemgirls/8611495 to your computer and use it in GitHub Desktop.
Rename html files based on title tag
#!/bin/bash
# Rename the ouput html file from redditPostArchiver with the reddit thread title.
# https://github.com/sJohnsonStoever/redditPostArchiver
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\._\- ]}_$f"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment