I have a call with a pretty long list of arguments in my shell script:
foo-command \
--important-argument $ONE \
--indispensable-flag $ENABLED \
--an-optional-toggle "will probably be commented out some day" \
$ARGUMENTS \
$MORE_ARGUMENTS
Can't I insert comments in this multiline call, can I?
For example, lets say, how can I comment out the --an-optional-toggle line?
How can I add an # in sorted order comment after $ARGUMENTS?
No matter what I try, the octothorp # symbol shadows line continuation backslash \, or vice versa. Any advise?