Looping a for with variables on a shell scriptShell script execution on multiple serversRunning any kind of login script when sh is linked to bashHow to use a password as an external variable in shell?Different configurations for ssh client depending on ip address or hostnameLinux user ssh connection disabled after execution of setfacl commandBash script with ssh not returning value of variablesChange default login shell to /bin/bash for ALL ldap users from LDAP server - not clientno user account can login via sshsign_and_send_pubkey: signing failed: agent refused operation CentOS 7 only between certain serversParallel ssh commands forking in background but keeping ssh open
How does the UK government determine the size of a mandate?
How to run a prison with the smallest amount of guards?
How to write papers efficiently when English isn't my first language?
System.debug(JSON.Serialize(o)) Not longer shows full string
Different result between scanning in Epson's "color negative film" mode and scanning in positive -> invert curve in post?
Why are there no referendums in the US?
How do scammers retract money, while you can’t?
Do the temporary hit points from the Battlerager barbarian's Reckless Abandon stack if I make multiple attacks on my turn?
Is HostGator storing my password in plaintext?
What happens if you roll doubles 3 times then land on "Go to jail?"
What is the difference between "behavior" and "behaviour"?
Is the destination of a commercial flight important for the pilot?
Is there a good way to store credentials outside of a password manager?
Inappropriate reference requests from Journal reviewers
Sequence of Tenses: Translating the subjunctive
How does buying out courses with grant money work?
Why, precisely, is argon used in neutrino experiments?
Is `x >> pure y` equivalent to `liftM (const y) x`
Integer addition + constant, is it a group?
Is there a korbon needed for conversion?
Did Dumbledore lie to Harry about how long he had James Potter's invisibility cloak when he was examining it? If so, why?
Customer Requests (Sometimes) Drive Me Bonkers!
Pre-amplifier input protection
Implement the Thanos sorting algorithm
Looping a for with variables on a shell script
Shell script execution on multiple serversRunning any kind of login script when sh is linked to bashHow to use a password as an external variable in shell?Different configurations for ssh client depending on ip address or hostnameLinux user ssh connection disabled after execution of setfacl commandBash script with ssh not returning value of variablesChange default login shell to /bin/bash for ALL ldap users from LDAP server - not clientno user account can login via sshsign_and_send_pubkey: signing failed: agent refused operation CentOS 7 only between certain serversParallel ssh commands forking in background but keeping ssh open
I have the following script that SSH to a server with a key and makes a lot of stuff there.
#!/usr/bin/env bash
ssh -i mykey.pem myuser@SERVER_IP << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
(which I run it with sh scriptname.sh
)
Now I want to to the same in another server, so I've to SSH to two different servers (ip_1
and ip_2
) with two different .pem
files (mykey1.pem
and mykey2.pem
).
So far I know how to loop the ips as follows:
#!/usr/bin/env bash
ip_list="ip_1 ip_2"
for ip in $ip_list; do
ssh -i mykey.pem myuser@$ip << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
but now I would like to loop also to get the proper pem file. How can I archieve this? Maybe with another list? Can someone provide me an elegant solution?
ip_1
should usemykey1.pem
ip_2
should usemykey2.pem
Thanks in advance
shell-script shell ssh
New contributor
add a comment |
I have the following script that SSH to a server with a key and makes a lot of stuff there.
#!/usr/bin/env bash
ssh -i mykey.pem myuser@SERVER_IP << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
(which I run it with sh scriptname.sh
)
Now I want to to the same in another server, so I've to SSH to two different servers (ip_1
and ip_2
) with two different .pem
files (mykey1.pem
and mykey2.pem
).
So far I know how to loop the ips as follows:
#!/usr/bin/env bash
ip_list="ip_1 ip_2"
for ip in $ip_list; do
ssh -i mykey.pem myuser@$ip << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
but now I would like to loop also to get the proper pem file. How can I archieve this? Maybe with another list? Can someone provide me an elegant solution?
ip_1
should usemykey1.pem
ip_2
should usemykey2.pem
Thanks in advance
shell-script shell ssh
New contributor
Don't use mykey1.pem but ip_1.pem. Then it's easy: ssh -i $ip.pem myuser@$ip << 'ENDSSH'
– stoney
yesterday
add a comment |
I have the following script that SSH to a server with a key and makes a lot of stuff there.
#!/usr/bin/env bash
ssh -i mykey.pem myuser@SERVER_IP << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
(which I run it with sh scriptname.sh
)
Now I want to to the same in another server, so I've to SSH to two different servers (ip_1
and ip_2
) with two different .pem
files (mykey1.pem
and mykey2.pem
).
So far I know how to loop the ips as follows:
#!/usr/bin/env bash
ip_list="ip_1 ip_2"
for ip in $ip_list; do
ssh -i mykey.pem myuser@$ip << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
but now I would like to loop also to get the proper pem file. How can I archieve this? Maybe with another list? Can someone provide me an elegant solution?
ip_1
should usemykey1.pem
ip_2
should usemykey2.pem
Thanks in advance
shell-script shell ssh
New contributor
I have the following script that SSH to a server with a key and makes a lot of stuff there.
#!/usr/bin/env bash
ssh -i mykey.pem myuser@SERVER_IP << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
(which I run it with sh scriptname.sh
)
Now I want to to the same in another server, so I've to SSH to two different servers (ip_1
and ip_2
) with two different .pem
files (mykey1.pem
and mykey2.pem
).
So far I know how to loop the ips as follows:
#!/usr/bin/env bash
ip_list="ip_1 ip_2"
for ip in $ip_list; do
ssh -i mykey.pem myuser@$ip << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
but now I would like to loop also to get the proper pem file. How can I archieve this? Maybe with another list? Can someone provide me an elegant solution?
ip_1
should usemykey1.pem
ip_2
should usemykey2.pem
Thanks in advance
shell-script shell ssh
shell-script shell ssh
New contributor
New contributor
edited yesterday
GAD3R
27.5k1858114
27.5k1858114
New contributor
asked yesterday
AviónAvión
1192
1192
New contributor
New contributor
Don't use mykey1.pem but ip_1.pem. Then it's easy: ssh -i $ip.pem myuser@$ip << 'ENDSSH'
– stoney
yesterday
add a comment |
Don't use mykey1.pem but ip_1.pem. Then it's easy: ssh -i $ip.pem myuser@$ip << 'ENDSSH'
– stoney
yesterday
Don't use mykey1.pem but ip_1.pem. Then it's easy: ssh -i $ip.pem myuser@$ip << 'ENDSSH'
– stoney
yesterday
Don't use mykey1.pem but ip_1.pem. Then it's easy: ssh -i $ip.pem myuser@$ip << 'ENDSSH'
– stoney
yesterday
add a comment |
3 Answers
3
active
oldest
votes
One way to do it is to use a while IFS=, read -r
loop on a csv here-document.
#! /bin/sh -
while IFS=, read <&3 -r ip key; do
ssh -i "$key" "$ip" << ENDSSH
...
ENDSSH
done 3<< ENDCSV
10.0.0.1,p1.pem
10.0.0.2,p2.pem
ENDCSV
Then you don't even need to require users to install bash. If portability is not a concern, you could use zsh
instead which supports looping over more than one variable.
#! /usr/bin/env zsh
for ip key (
10.0.0.1 p1.pem
10.0.0.2 p2.pem
) ssh -i $key $ip << ENDSSH
...
ENDSSH
add a comment |
Since you're using bash, you can use associative arrays:
#!/usr/bin/env bash
declare -A ip_list=(["ip_1"]="mykey1.pem" ["ip_2"]="mykey2.pem")
for ip in "$!ip_list[@]"; do
ssh -i "$ip_list[$ip]" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
Note that associative arrays, unlike regular indexed arrays, are not saved in a specific order, so there is no guarantee that ip_1
will be processed before ip_2
.
If you need to use a simple, POSIX compatible shell, create a file with the ip and key files, one per line:
$ cat iplist.txt
ip1 mykey1.pem
ip2 mykey2.pem
Then, use this script:
#!/bin/sh
while read -r ip key; do
ssh -i "$key" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
And run it with:
sh /path/to/script < /path/to/iplist.txt
But if you go that route, Stéphane's approach is better.
I'm running it withsh
(I cant change that), so it seems I cannot use arrays.
– Avión
yesterday
3
@Avión what do you mean? You have#!/usr/bin/env bash
in your script. Just make the script executable (chmod a+x /path/to/script
) and then run it directly:/path/to/script
. Alternatively, run it withbash /path/to/script
. The only reason you're usingsh
is because you're calling it withsh /path/to/script
.
– terdon♦
yesterday
@StéphaneChazelas good point. Done, thanks.
– terdon♦
yesterday
add a comment |
Your original script can be made slightly more portable via set
built-in, plus have ip and key go together as one string, colon separated. We later can use prefix and suffix removal to extract corresponding entry
#!/usr/bin/env bash
# Set positional parameters
# Example ip addresses
set -- 192.168.0.1:mykey1 192.168.1.1:mykey2
# iterating without specifying 'in' assumes positiona parameters
for host; do
ssh -i $host##*:.pem myuser@$host%%:* << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
2
set is not really helping here. You could just as well dofor host in 192.168.0.1:mykey1 192.168.1.1:mykey2; do
. Note that:
is not the best choice of delimiter as it's found in IPv6 addresses. You also need to quote parameter expansions to prevent split+glob
– Stéphane Chazelas
yesterday
All fair points. Semicolon could serve a better delimiter, maybe ?
– Sergiy Kolodyazhnyy
yesterday
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Avión is a new contributor. Be nice, and check out our Code of Conduct.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f508706%2flooping-a-for-with-variables-on-a-shell-script%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
One way to do it is to use a while IFS=, read -r
loop on a csv here-document.
#! /bin/sh -
while IFS=, read <&3 -r ip key; do
ssh -i "$key" "$ip" << ENDSSH
...
ENDSSH
done 3<< ENDCSV
10.0.0.1,p1.pem
10.0.0.2,p2.pem
ENDCSV
Then you don't even need to require users to install bash. If portability is not a concern, you could use zsh
instead which supports looping over more than one variable.
#! /usr/bin/env zsh
for ip key (
10.0.0.1 p1.pem
10.0.0.2 p2.pem
) ssh -i $key $ip << ENDSSH
...
ENDSSH
add a comment |
One way to do it is to use a while IFS=, read -r
loop on a csv here-document.
#! /bin/sh -
while IFS=, read <&3 -r ip key; do
ssh -i "$key" "$ip" << ENDSSH
...
ENDSSH
done 3<< ENDCSV
10.0.0.1,p1.pem
10.0.0.2,p2.pem
ENDCSV
Then you don't even need to require users to install bash. If portability is not a concern, you could use zsh
instead which supports looping over more than one variable.
#! /usr/bin/env zsh
for ip key (
10.0.0.1 p1.pem
10.0.0.2 p2.pem
) ssh -i $key $ip << ENDSSH
...
ENDSSH
add a comment |
One way to do it is to use a while IFS=, read -r
loop on a csv here-document.
#! /bin/sh -
while IFS=, read <&3 -r ip key; do
ssh -i "$key" "$ip" << ENDSSH
...
ENDSSH
done 3<< ENDCSV
10.0.0.1,p1.pem
10.0.0.2,p2.pem
ENDCSV
Then you don't even need to require users to install bash. If portability is not a concern, you could use zsh
instead which supports looping over more than one variable.
#! /usr/bin/env zsh
for ip key (
10.0.0.1 p1.pem
10.0.0.2 p2.pem
) ssh -i $key $ip << ENDSSH
...
ENDSSH
One way to do it is to use a while IFS=, read -r
loop on a csv here-document.
#! /bin/sh -
while IFS=, read <&3 -r ip key; do
ssh -i "$key" "$ip" << ENDSSH
...
ENDSSH
done 3<< ENDCSV
10.0.0.1,p1.pem
10.0.0.2,p2.pem
ENDCSV
Then you don't even need to require users to install bash. If portability is not a concern, you could use zsh
instead which supports looping over more than one variable.
#! /usr/bin/env zsh
for ip key (
10.0.0.1 p1.pem
10.0.0.2 p2.pem
) ssh -i $key $ip << ENDSSH
...
ENDSSH
edited yesterday
answered yesterday
Stéphane ChazelasStéphane Chazelas
311k57589946
311k57589946
add a comment |
add a comment |
Since you're using bash, you can use associative arrays:
#!/usr/bin/env bash
declare -A ip_list=(["ip_1"]="mykey1.pem" ["ip_2"]="mykey2.pem")
for ip in "$!ip_list[@]"; do
ssh -i "$ip_list[$ip]" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
Note that associative arrays, unlike regular indexed arrays, are not saved in a specific order, so there is no guarantee that ip_1
will be processed before ip_2
.
If you need to use a simple, POSIX compatible shell, create a file with the ip and key files, one per line:
$ cat iplist.txt
ip1 mykey1.pem
ip2 mykey2.pem
Then, use this script:
#!/bin/sh
while read -r ip key; do
ssh -i "$key" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
And run it with:
sh /path/to/script < /path/to/iplist.txt
But if you go that route, Stéphane's approach is better.
I'm running it withsh
(I cant change that), so it seems I cannot use arrays.
– Avión
yesterday
3
@Avión what do you mean? You have#!/usr/bin/env bash
in your script. Just make the script executable (chmod a+x /path/to/script
) and then run it directly:/path/to/script
. Alternatively, run it withbash /path/to/script
. The only reason you're usingsh
is because you're calling it withsh /path/to/script
.
– terdon♦
yesterday
@StéphaneChazelas good point. Done, thanks.
– terdon♦
yesterday
add a comment |
Since you're using bash, you can use associative arrays:
#!/usr/bin/env bash
declare -A ip_list=(["ip_1"]="mykey1.pem" ["ip_2"]="mykey2.pem")
for ip in "$!ip_list[@]"; do
ssh -i "$ip_list[$ip]" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
Note that associative arrays, unlike regular indexed arrays, are not saved in a specific order, so there is no guarantee that ip_1
will be processed before ip_2
.
If you need to use a simple, POSIX compatible shell, create a file with the ip and key files, one per line:
$ cat iplist.txt
ip1 mykey1.pem
ip2 mykey2.pem
Then, use this script:
#!/bin/sh
while read -r ip key; do
ssh -i "$key" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
And run it with:
sh /path/to/script < /path/to/iplist.txt
But if you go that route, Stéphane's approach is better.
I'm running it withsh
(I cant change that), so it seems I cannot use arrays.
– Avión
yesterday
3
@Avión what do you mean? You have#!/usr/bin/env bash
in your script. Just make the script executable (chmod a+x /path/to/script
) and then run it directly:/path/to/script
. Alternatively, run it withbash /path/to/script
. The only reason you're usingsh
is because you're calling it withsh /path/to/script
.
– terdon♦
yesterday
@StéphaneChazelas good point. Done, thanks.
– terdon♦
yesterday
add a comment |
Since you're using bash, you can use associative arrays:
#!/usr/bin/env bash
declare -A ip_list=(["ip_1"]="mykey1.pem" ["ip_2"]="mykey2.pem")
for ip in "$!ip_list[@]"; do
ssh -i "$ip_list[$ip]" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
Note that associative arrays, unlike regular indexed arrays, are not saved in a specific order, so there is no guarantee that ip_1
will be processed before ip_2
.
If you need to use a simple, POSIX compatible shell, create a file with the ip and key files, one per line:
$ cat iplist.txt
ip1 mykey1.pem
ip2 mykey2.pem
Then, use this script:
#!/bin/sh
while read -r ip key; do
ssh -i "$key" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
And run it with:
sh /path/to/script < /path/to/iplist.txt
But if you go that route, Stéphane's approach is better.
Since you're using bash, you can use associative arrays:
#!/usr/bin/env bash
declare -A ip_list=(["ip_1"]="mykey1.pem" ["ip_2"]="mykey2.pem")
for ip in "$!ip_list[@]"; do
ssh -i "$ip_list[$ip]" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
Note that associative arrays, unlike regular indexed arrays, are not saved in a specific order, so there is no guarantee that ip_1
will be processed before ip_2
.
If you need to use a simple, POSIX compatible shell, create a file with the ip and key files, one per line:
$ cat iplist.txt
ip1 mykey1.pem
ip2 mykey2.pem
Then, use this script:
#!/bin/sh
while read -r ip key; do
ssh -i "$key" myuser@"$ip" << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
And run it with:
sh /path/to/script < /path/to/iplist.txt
But if you go that route, Stéphane's approach is better.
edited yesterday
answered yesterday
terdon♦terdon
133k32265444
133k32265444
I'm running it withsh
(I cant change that), so it seems I cannot use arrays.
– Avión
yesterday
3
@Avión what do you mean? You have#!/usr/bin/env bash
in your script. Just make the script executable (chmod a+x /path/to/script
) and then run it directly:/path/to/script
. Alternatively, run it withbash /path/to/script
. The only reason you're usingsh
is because you're calling it withsh /path/to/script
.
– terdon♦
yesterday
@StéphaneChazelas good point. Done, thanks.
– terdon♦
yesterday
add a comment |
I'm running it withsh
(I cant change that), so it seems I cannot use arrays.
– Avión
yesterday
3
@Avión what do you mean? You have#!/usr/bin/env bash
in your script. Just make the script executable (chmod a+x /path/to/script
) and then run it directly:/path/to/script
. Alternatively, run it withbash /path/to/script
. The only reason you're usingsh
is because you're calling it withsh /path/to/script
.
– terdon♦
yesterday
@StéphaneChazelas good point. Done, thanks.
– terdon♦
yesterday
I'm running it with
sh
(I cant change that), so it seems I cannot use arrays.– Avión
yesterday
I'm running it with
sh
(I cant change that), so it seems I cannot use arrays.– Avión
yesterday
3
3
@Avión what do you mean? You have
#!/usr/bin/env bash
in your script. Just make the script executable (chmod a+x /path/to/script
) and then run it directly: /path/to/script
. Alternatively, run it with bash /path/to/script
. The only reason you're using sh
is because you're calling it with sh /path/to/script
.– terdon♦
yesterday
@Avión what do you mean? You have
#!/usr/bin/env bash
in your script. Just make the script executable (chmod a+x /path/to/script
) and then run it directly: /path/to/script
. Alternatively, run it with bash /path/to/script
. The only reason you're using sh
is because you're calling it with sh /path/to/script
.– terdon♦
yesterday
@StéphaneChazelas good point. Done, thanks.
– terdon♦
yesterday
@StéphaneChazelas good point. Done, thanks.
– terdon♦
yesterday
add a comment |
Your original script can be made slightly more portable via set
built-in, plus have ip and key go together as one string, colon separated. We later can use prefix and suffix removal to extract corresponding entry
#!/usr/bin/env bash
# Set positional parameters
# Example ip addresses
set -- 192.168.0.1:mykey1 192.168.1.1:mykey2
# iterating without specifying 'in' assumes positiona parameters
for host; do
ssh -i $host##*:.pem myuser@$host%%:* << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
2
set is not really helping here. You could just as well dofor host in 192.168.0.1:mykey1 192.168.1.1:mykey2; do
. Note that:
is not the best choice of delimiter as it's found in IPv6 addresses. You also need to quote parameter expansions to prevent split+glob
– Stéphane Chazelas
yesterday
All fair points. Semicolon could serve a better delimiter, maybe ?
– Sergiy Kolodyazhnyy
yesterday
add a comment |
Your original script can be made slightly more portable via set
built-in, plus have ip and key go together as one string, colon separated. We later can use prefix and suffix removal to extract corresponding entry
#!/usr/bin/env bash
# Set positional parameters
# Example ip addresses
set -- 192.168.0.1:mykey1 192.168.1.1:mykey2
# iterating without specifying 'in' assumes positiona parameters
for host; do
ssh -i $host##*:.pem myuser@$host%%:* << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
2
set is not really helping here. You could just as well dofor host in 192.168.0.1:mykey1 192.168.1.1:mykey2; do
. Note that:
is not the best choice of delimiter as it's found in IPv6 addresses. You also need to quote parameter expansions to prevent split+glob
– Stéphane Chazelas
yesterday
All fair points. Semicolon could serve a better delimiter, maybe ?
– Sergiy Kolodyazhnyy
yesterday
add a comment |
Your original script can be made slightly more portable via set
built-in, plus have ip and key go together as one string, colon separated. We later can use prefix and suffix removal to extract corresponding entry
#!/usr/bin/env bash
# Set positional parameters
# Example ip addresses
set -- 192.168.0.1:mykey1 192.168.1.1:mykey2
# iterating without specifying 'in' assumes positiona parameters
for host; do
ssh -i $host##*:.pem myuser@$host%%:* << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
Your original script can be made slightly more portable via set
built-in, plus have ip and key go together as one string, colon separated. We later can use prefix and suffix removal to extract corresponding entry
#!/usr/bin/env bash
# Set positional parameters
# Example ip addresses
set -- 192.168.0.1:mykey1 192.168.1.1:mykey2
# iterating without specifying 'in' assumes positiona parameters
for host; do
ssh -i $host##*:.pem myuser@$host%%:* << 'ENDSSH'
[A LOT OF STUFF]
ENDSSH
done
answered yesterday
Sergiy KolodyazhnyySergiy Kolodyazhnyy
10.7k42763
10.7k42763
2
set is not really helping here. You could just as well dofor host in 192.168.0.1:mykey1 192.168.1.1:mykey2; do
. Note that:
is not the best choice of delimiter as it's found in IPv6 addresses. You also need to quote parameter expansions to prevent split+glob
– Stéphane Chazelas
yesterday
All fair points. Semicolon could serve a better delimiter, maybe ?
– Sergiy Kolodyazhnyy
yesterday
add a comment |
2
set is not really helping here. You could just as well dofor host in 192.168.0.1:mykey1 192.168.1.1:mykey2; do
. Note that:
is not the best choice of delimiter as it's found in IPv6 addresses. You also need to quote parameter expansions to prevent split+glob
– Stéphane Chazelas
yesterday
All fair points. Semicolon could serve a better delimiter, maybe ?
– Sergiy Kolodyazhnyy
yesterday
2
2
set is not really helping here. You could just as well do
for host in 192.168.0.1:mykey1 192.168.1.1:mykey2; do
. Note that :
is not the best choice of delimiter as it's found in IPv6 addresses. You also need to quote parameter expansions to prevent split+glob– Stéphane Chazelas
yesterday
set is not really helping here. You could just as well do
for host in 192.168.0.1:mykey1 192.168.1.1:mykey2; do
. Note that :
is not the best choice of delimiter as it's found in IPv6 addresses. You also need to quote parameter expansions to prevent split+glob– Stéphane Chazelas
yesterday
All fair points. Semicolon could serve a better delimiter, maybe ?
– Sergiy Kolodyazhnyy
yesterday
All fair points. Semicolon could serve a better delimiter, maybe ?
– Sergiy Kolodyazhnyy
yesterday
add a comment |
Avión is a new contributor. Be nice, and check out our Code of Conduct.
Avión is a new contributor. Be nice, and check out our Code of Conduct.
Avión is a new contributor. Be nice, and check out our Code of Conduct.
Avión is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f508706%2flooping-a-for-with-variables-on-a-shell-script%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Don't use mykey1.pem but ip_1.pem. Then it's easy: ssh -i $ip.pem myuser@$ip << 'ENDSSH'
– stoney
yesterday