How to strip all of the text out of a text file and leave only the numbers and formatting. And other sed tricks.

How to strip all numbers out of a text stream This is how to remove all text from the output of a file and only keep the other formatting. homer@deep-thought ~/Desktop/b $ fortune -l | sed s/[a-z]/\ /gi; : 3:15 . . – .   , ! — ’84homer@deep-thought ~/Desktop/b $ fortune -l | sed … Read more