Last active
September 8, 2026 08:56
-
-
Save vadimkantorov/b4a11c4905910c55118b1d3151de68e9 to your computer and use it in GitHub Desktop.
sed replace in files http with https
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
| find . -type f -maxdepth 1 -name '*.md' -exec sed -i '' 's/http\:/https\:/g' {} ';' | |
| # grep 'http\://' *.md |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment