What does the comma in sed commands stand for? -


what following command mean:

sed -e '/subckt\ redbk128s4_lc/,/ends/ d'   $1  

what , stand for?

if specify 2 addresses, specify range of lines on command executed. in sed expression, deletes lines beginning line matched first pattern , , including line matched second pattern.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -