Skip to content

Instantly share code, notes, and snippets.

@pixelbrackets
Created November 25, 2020 17:05
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 pixelbrackets/b1f8351ebe84b8ac24c4ae6057ef1280 to your computer and use it in GitHub Desktop.
Save pixelbrackets/b1f8351ebe84b8ac24c4ae6057ef1280 to your computer and use it in GitHub Desktop.
Patchbot Patch »search-and-replace« - Search and replace a string within a README
Replace Sandbox Title
Add a more verbose title
<?php
$content = file_get_contents('README.md');
$content = str_replace('Sandbox', 'Sandbox Patch', $content);
file_put_contents('README.md', $content);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment