Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering if there is a way to comment out a set of lines in a shell script. How could I do that? We can use /* */ in other programming languages. This is most useful when I am converting/using/modifying another script and I want to keep the original lines instead of deleting.

It seems a cumbersome job to find and prefix # for all the lines which are not used.

Lets say there are 100 lines in the script in consequent lines which are not to used. I want to comment them all out in one go. Is that possible?

share|improve this question

7 Answers

up vote 2 down vote accepted
if false
then

...code...

fi

false always returns false so this will always skip the code.

share|improve this answer
bash is not a pre-processed language... this trick is useful when used in C as a preprocessor command. If you do it as you suggested you can't avoid possible syntax errors. – AlberT Sep 18 '09 at 12:57
I actually don't mind being informed of syntax errors in code that is "disabled". – Artelius Sep 18 '09 at 13:04
:/ This is certainly not the best answer, IMO. – Artelius Oct 9 '09 at 22:55

You can use a 'here' document with no command to send it to.

#!/bin/bash
echo "Say Something"
<<COMMENT1
    your comment 1
    comment 2
    blah
COMMENT1
echo "Do something else"

Wikipedia Reference

share|improve this answer

Text editors have an amazing feature called search and replace. You don't say what editor you use, but since shell scripts tend to be *nix, and I use VI, here's the command to comment lines 20 to 50 of some shell script:

:20,50s/^/#/
share|improve this answer
That is ninja. – Tom Ritter Sep 18 '09 at 13:01
That's how I would do it. To uncomment, try this: :20,50s/^#// – Hai Vu Sep 20 '09 at 17:56
: || {
your code here
your code here
your code here
your code here
}
share|improve this answer

Depending of the editor that you're using there are some shortcuts to comment a block of lines.

Another workaround would be to put your code in an "if (0)" conditional block ;)

share|improve this answer

Take a look at the following: http://kunaljain.wordpress.com/2008/01/22/usefull-vi-tricks/

share|improve this answer

This Perl one-liner comments out lines 1 to 3 of the file orig.sh inclusive (where the first line is numbered 0), and writes the commented version to cmt.sh.

perl -n -e '$s=1;$e=3; $_="#$_" if $i>=$s&&$i<=$e;print;$i++' orig.sh > cmt.sh

Obviously you can change the boundary numbers as required.

If you want to edit the file in place, it's even shorter:

perl -in -e '$s=1;$e=3; $_="#$_" if $i>=$s&&$i<=$e;print;$i++' orig.sh

Demo

$ cat orig.sh 
a
b
c
d
e
f

$ perl -n -e '$s=1;$e=3; $_="#$_" if $i>=$s&&$i<=$e;print;$i++' orig.sh > cmt.sh

$ cat cmt.sh 
a
#b
#c
#d
e
f
share|improve this answer

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.