Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The command elb-describe-instance-health returns the following

INSTANCE_ID  i-111
INSTANCE_ID  i-222
INSTANCE_ID  i-333

$(elb-describe-instance-health | awk '/INSTANCE_ID/{print $2}')

returns i-111 i-222 i-3333

How can I change the above syntax to store each of these values in an array (ex. foo[0] equals i-111, foo[1] equals i-222, foo[2] equals i-333?

share|improve this question

2 Answers

up vote 4 down vote accepted

Here's one way:

array=($(elb-describe-instance-health | awk '/INSTANCE_ID/ { print $2 }'))

Then simply echo the element you want. To echo the first element for example, try:

echo "${array[0]}"
share|improve this answer
I assumed your looking to store the elements you want in a shell array. Perhaps I was wrong. – Suicidal Steve Oct 18 '12 at 6:27
No you're correct =) – user784637 Oct 18 '12 at 6:33
IFS needs to be reset if this is not used in a script :p – doubleDown Oct 18 '12 at 8:05
Setting IFS is only necessary if you only want to word-split on newlines. The default value is sufficient for the example given. – chepner Oct 18 '12 at 13:04
1  
@Steve That is a brilliant and elegant solution, much better than the tired old (and dangerous!) "eval $(awk '...')" I was going to suggest. Can't believe I haven't come across that before. Thanks! – Ed Morton Oct 18 '12 at 14:00
show 2 more comments

Use

$(elb-describe-instance-health |awk '/INSTANCE_ID/ { foo[i++] = $2 }')

but I guess you would like to do something with foo.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.