Adding words (tags) to a file [duplicate]
up vote
-1
down vote
favorite
This question already has an answer here:
Insert line after first match using sed
6 answers
I want to add the words "Getting started" to two markdown files (so the extension is .md). They are named: * installing-disqus.md * installing-google-analytics.md I would like to populate that word right after the line "Tags: " so the outcome would be "Tags: Getting started" In Bash, what command would I write. I am thinking it would look something like this: echo "Getting started" >> *installing* *Tags:*
bash echo
share | improve this question
...