I want to manually comment and uncomment lines in a multi-line statement, within a script file. Consider for example:
./configure \
--prefix /usr/local \
--with-option1 \
--with-option2
I want to be able to do something like this (basically, ignoring the option1 switch):
./configure \
--prefix /usr/local \
#--with-option1 \
--with-option2
Is there a way to do it without deleting and undoing the delete?