Created
November 25, 2020 17:05
-
-
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
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
Replace Sandbox Title | |
Add a more verbose 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
<?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