79630968

Date: 2025-05-20 18:23:51
Score: 0.5
Natty:
Report link

You can include comments in multi-line commands using command substitution like this:

echo \
  `# comment` \
  -n hello

or using the : no-op command:

echo \
  $( : # comment ) \
  -n hello
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Seb T