I think I follow what you mean...
If you need something to appear in the forums as you've typed it, surround it with CODE tags (the "#" symbol in the editor).
/dev/null is just a garbage can, it means that I want the output from grep to go nowhere as we don't need it. You can get a similar effect by using grep with the -q option but that only wroks on certain versions of grep.
If your fields are exactly 8 chars wide, we can change the cut call in the code like so:
Becomes
(ie, instead of cutting fields 1 and 2 seperated by spaces, we cut chars 1-8 and 9-16)