Click to See Complete Forum and Search --> : uncomment


tectonicman
07-29-2001, 04:37 PM
what do you do when you're asked to "uncomment one only" ?

pbharris
07-29-2001, 05:41 PM
hello,
if it is a unix shell scrpit or makefile remove a # from a single line, which should make it such that line is visable.

if C remove a /* */ pair, if c++ remove a //. not sure about perl...

ronmon
07-29-2001, 05:43 PM
If a line begins with a # (number or pound sign, that line of the script or configuration file is not read when it is run. You would uncomment the line by editing out the # so that the option or argument becomes active.