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

A look at the objdump command. A very useful Linux utility indeed. As well as some other useful commands.

The best thing that is happening with the Linux kernel and the associated software that builds a distribution is that the software is getting easier to use than ever. But the Linux command-line is still the best and easiest way to get some things done. For example; getting information about an executable file. This is … Read more