Do you ever find yourself wanting to open several terminal windows and send the same commands to all of them? I’ve had this need many times, and I’ve never found a completely satisfactory solution. I’ve also known a lot of people who’ve written various sets of scripts to help them accomplish such tasks.
In no particular order, here are a few ways I’ve done this in the past:
- Facebook’s pmysql client
- The dsh tool
- Several screen windows named remoteXXX, followed by a bash
for-loop:
while read cmd; do screen -X at remote# stuff "$cmd"; done
- Using many PuTTY windows and the puttycs tool
- Opening many tabs in KDE’s Kterm tool and selecting the options to send input to all tabs
Here …
[Read more]