Este é um blog onde anoto dicas técnicas de informática e computação.
This is a blog where I write down technical tips on computing.
Be aware that some resources used in this blog may use cookies to collect information used by Ads and Google Analytics. I do not monetize from this website, neither require or use personal information.
Thursday, October 27, 2016
Replace from line number X to line number Y using sed
To show text between lines
Fore example lines 2 and 5
sed -n '2,5p' file
To replace string1 by string2 only in lines between 2 and 5
No comments:
Post a Comment