Wednesday, February 21, 2007
#
Here is a neat trick I stumbled across while doing some Stream Editing.
Here is a command that will remove all tabs and spaces before a new line.
sed -e 's/[]*$//' -e '/^$/ d'
(This command is yet untested)
This should reduce those extra characters from causing the b load command to fail.