How to insert inline comment in multiline command?
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
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.
bash command
add a comment |Â
up vote
1
down vote
favorite
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.
bash command
Similar: unix.stackexchange.com/q/19124/117549
â Jeff Schaller
Jun 22 at 9:54
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
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.
bash command
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.
bash command
asked Jun 22 at 9:28
xliiv
2642413
2642413
Similar: unix.stackexchange.com/q/19124/117549
â Jeff Schaller
Jun 22 at 9:54
add a comment |Â
Similar: unix.stackexchange.com/q/19124/117549
â Jeff Schaller
Jun 22 at 9:54
Similar: unix.stackexchange.com/q/19124/117549
â Jeff Schaller
Jun 22 at 9:54
Similar: unix.stackexchange.com/q/19124/117549
â Jeff Schaller
Jun 22 at 9:54
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
One approach:
apt install -y
curl `# my comment`
python3
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
One approach:
apt install -y
curl `# my comment`
python3
add a comment |Â
up vote
1
down vote
accepted
One approach:
apt install -y
curl `# my comment`
python3
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
One approach:
apt install -y
curl `# my comment`
python3
One approach:
apt install -y
curl `# my comment`
python3
edited Jun 22 at 10:04
answered Jun 22 at 9:34
steve
12.1k22047
12.1k22047
add a comment |Â
add a comment |Â
Â
draft saved
draft discarded
Â
draft saved
draft discarded
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f451256%2fhow-to-insert-inline-comment-in-multiline-command%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Similar: unix.stackexchange.com/q/19124/117549
â Jeff Schaller
Jun 22 at 9:54