Try putting a couple of spaces in front of your code line, like this:
cat file | perl -p -e "s/.*from ([0-9\.]+).*/\1/g"
Edit: for simple regexes, sed works well, too, and probably loads slightly faster than perl.
Try putting a couple of spaces in front of your code line, like this:
See http://news.ycombinator.com/formatdocEdit: for simple regexes, sed works well, too, and probably loads slightly faster than perl.