Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Does it have to work with the common convention that #blah \<nl>blah counts as a single "logical line" because the backslash escapes the newline? – sarnold Nov 21 '11 at 1:18
@sarnold: apart from make, 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
@Jonathan: Awesome. I had assumed that the common \<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

6 Answers

up vote 13 down vote accepted

This can be done with a sed one-liner:

sed '/^#/ d'

This says, "find all lines that start with # and delete them, leaving everything else."

share|improve this answer
and the code is? – Derek Nov 21 '11 at 1:23
shorter version: sed /^#/d – kev Mar 11 '12 at 14:46

The opposite of Raymond's solution:

sed -n '/^#/!p'

"don't print anything, except for lines that DON'T start with #"

share|improve this answer

I'm a little surprised nobody has suggested the most obvious solution:

grep -v '^#' filename

This solves the problem as stated.

But note that a common convention is for everything from a # to the end of a line to be treated as a comment:

sed 's/#.*$//' filename

though that treats, for example, a # character within a string literal as the beginning of a comment (which may or may not be relevant for your case) (and it leaves empty lines).

A line starting with arbitrary whitespace followed by # might also be treated as a comment:

grep -v '^ *#' filename

if whitespace is only spaces, or

grep -v '^[  ]#' filename

where the two spaces are actually a space followed by a literal tab character (type "control-v tab").

For all these commands, omit the filename argument to read from standard input (e.g., as part of a pipe).

share|improve this answer

You can use the following for an awk solution -

awk '/^#/ {sub(/#.*/,"");getline;}1' inputfile
share|improve this answer

Like this:

sed 's/^\#.*//g' < foobar
share|improve this answer
That deletes the comments, but not the newline as well, whereas the question asks for deleting the whole line. Thus, this code removes the comment text without changing the line count. The backslash is also superfluous, although it is unlikely to be harmful. – Jonathan Leffler Nov 21 '11 at 2:09

to remove the comment symbol (#) but keep the rest of the line and keep the sha-bang:

 awk '{ if( ($0 !~ /^ *#/) || ($0 ~ /^ *#!/) ) print $0 ; else  {gsub(/^ *#/ , "" ); print } } ' teste.sh  nter code here
share|improve this answer
The question was flagged sed. And the awk is certainly awkward. – Joseph Quinsey Oct 26 '12 at 23:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.