Say I have a decent git server(source code repos). I want to push the code to 50 websevers, I can do the following in sequence:
#!/bin/bash for i in {1..50} do ssh root@websever$i '(cd /var/www/project project; git pull)' done Question: Is there an easy way to push the code to 50 websevers in parallel? Thanks.