i've done a bash script like this

while read site address do ssh $address "df -k" done

to repeat the remote command few times, but the loop works just once. Any idea on the reason of this behavior? Did i miss something?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Use the -n flag:

while read site address; do ssh -n $address "df -k";done

This tells ssh to leave stdin alone. Otherwise it will interfere with the next read command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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