Como inserir comentário inline no comando multiline?

1

Eu gostaria de fazer isso no bash

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

Mas isso não funciona.

    
por xliiv 22.06.2018 / 11:28

1 resposta

1

Uma abordagem:

apt install -y \
   curl '# my comment' \
   python3
    
por 22.06.2018 / 11:34

Tags