Skip to content

Instantly share code, notes, and snippets.

@vadimkantorov
Last active September 8, 2026 08:56
Show Gist options
  • Select an option

  • Save vadimkantorov/b4a11c4905910c55118b1d3151de68e9 to your computer and use it in GitHub Desktop.

Select an option

Save vadimkantorov/b4a11c4905910c55118b1d3151de68e9 to your computer and use it in GitHub Desktop.
sed replace in files http with https
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