September 2014
M T W T F S S
1234567
891011121314
15161718192021
22232425262728
2930  

Categories

September 2014
M T W T F S S
1234567
891011121314
15161718192021
22232425262728
2930  

sed example

Text Interval: ——–

# Add a blank line after each line sed G

# The original delete all blank lines and add a blank line after each line. # So that each line of text output later and only a blank line. sed ‘/ ^ $ / d; G’

# […]