hi I want to write a unix script, while using the SED editor, to output the text, in this case a variable, to the result file but highlighted it in bold, is it possible to do that? can you tell me how?
eg. in text.txt
Code:
sed '$ a\
'$variable'
' <text.txt >text2.txt
so it will add the variable after the last line in the text.txt
file, but preferably in bold
Thanks Robert