Created
November 16, 2021 18:56
-
-
Save Leland/1976d2677a20f283d2015541e5ba4859 to your computer and use it in GitHub Desktop.
Revisions
-
Leland created this gist
Nov 16, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ #!/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