On Sun, Jul 29, 2007 at 12:50:15AM -0700, Eric Lesh wrote: ... > diff --git a/guilt b/guilt > index f67bfb5..774909e 100755 > --- a/guilt > +++ b/guilt > @@ -178,7 +178,8 @@ get_series() > # - whitespace only > # - optional whitespace followed by '#' followed by more > # optional whitespace > - grep -ve '^[[:space:]]*\(#.*\)*$' "$series" > + # also remove comments from end of lines > + grep -ve '^[[:space:]]*\(#.*\)*$' < "$series" | sed -e 's/[[:space:]]*#.*$//' I'd be tempted to replace the whole thing with one sed script...something like (not tested): " /^[[:space:]]*#/ ! { s/[[:space:]]*#.*$// p } " Regardless of the other 3 patches, this one makes sense to include. Josef 'Jeff' Sipek. -- Once you have their hardware. Never give it back. (The First Rule of Hardware Acquisition) - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html