Created
November 16, 2021 18:56
-
-
Save Leland/1976d2677a20f283d2015541e5ba4859 to your computer and use it in GitHub Desktop.
Rename HTML files to their <title>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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