7

I'd like to do this on bash

apt install -y \
   curl \  # i'd like to insert comment here somehow
   python3

But this doesn't work.

xliiv
  • 889

1 Answers1

5

One approach:

apt install -y \
   curl `# my comment` \
   python3
steve
  • 21,892