When I have a long line of calling a command with its arguments, is it possible to break it into several lines, and have a commend for each line?
For example, if I break free -h
into two lines
free \
-h
how can I add a comment for each line? An attempt like this one
free \ # this is the command
-h # this is the argument
doesn't work.