Skip to content

Instantly share code, notes, and snippets.

@Leland
Created November 16, 2021 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Leland/1976d2677a20f283d2015541e5ba4859 to your computer and use it in GitHub Desktop.
Save Leland/1976d2677a20f283d2015541e5ba4859 to your computer and use it in GitHub Desktop.
Rename HTML files to their <title>
#!/bin/bash
set -eu -o pipefail
for f in *.html ; do
mv -v "$f" "$(ggrep -oP '<title>\K.+?</title>' "$f" | sed 's#</title>##').html"
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment