You're viewing a comment by Michael and its responses.
You're viewing a comment by Michael and its responses.
I am being sponsored by Syntress since 2007! They bought me an amazing dedicated server to run catonmat on. If you're looking web services in Chicago area, I highly recommend the Syntress guys!
I love to read science books. They make my day and I get ideas for awesome blog posts, such as Busy Beaver, On Functors, Recursive Regular Expressions and many others.
Take a look at my
Amazon wish list, if you're curious about what I have planned reading next, and want to surprise me. :)


Thanks Peter,
A different use of markers for the beginning and end of line are backslash A and backslash Z \A\Z.
I also like to use perl one liners inside a VI session like this : % ! perl -pe 's/foo/bar/'
The : inside VI puts the editor into command line mode, the % says for every line in the file, the ! says run the following in the shell. The perl program runs on every line making the edit.
Reply To This Comment