Created
March 26, 2020 23:28
-
-
Save ipleten/98b7342cba2243d1436ea4c4cc18a12e to your computer and use it in GitHub Desktop.
Replace clean: section in Makefile assuming sections are separated by empty line. Sed multi-line replacement.
This file contains 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
# using range bounderies and 'c' command; | |
sed -e ' /clean:/, /^ *$/ c clean:\n\tREPLACED' Makefile |
This file contains 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
section: | |
ls | |
clean: | |
rm -rf ./tagget | |
something-else: | |
kill-all-human.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment