All of the lines with comments in a file begin with #. How can I delete all of the lines (and only those lines) which begin with #? Other lines containing #, but not at the beginning of the line should be ignored.
|
This can be done with a sed one-liner:
This says, "find all lines that start with # and delete them, leaving everything else." |
||||
|
The opposite of Raymond's solution:
"don't print anything, except for lines that DON'T start with #" |
|||
|
|
|
I'm a little surprised nobody has suggested the most obvious solution:
This solves the problem as stated. But note that a common convention is for everything from a
though that treats, for example, a A line starting with arbitrary whitespace followed by
if whitespace is only spaces, or
where the two spaces are actually a space followed by a literal tab character (type "control-v tab"). For all these commands, omit the |
|||
|
|
|
You can use the following for an awk solution -
|
||||
|
|
|
Like this:
|
|||
|
|
to remove the comment symbol (#) but keep the rest of the line and keep the sha-bang:
|
|||
|
#blah \<nl>blahcounts as a single "logical line" because the backslash escapes the newline? – sarnold Nov 21 '11 at 1:18make, which utilities use the 'backslash splices lines before ending a comment'? The shells (bash and ksh tested) don't. C and C++ do handle newline splicing before other processing of preprocessor directives, but they're directives rather than comments. – Jonathan Leffler Nov 21 '11 at 2:16\<nl>escaping would also work on comments. But wow I was wrong. I haven't been able to find another example yet... :) Thanks! – sarnold Nov 21 '11 at 2:31