Skip to content

Instantly share code, notes, and snippets.

@pantaovay
Created November 9, 2012 20:22
Show Gist options
  • Save pantaovay/4047995 to your computer and use it in GitHub Desktop.
Save pantaovay/4047995 to your computer and use it in GitHub Desktop.
Open many GoAgents At The Same Time
#!/bin/sh
# Filename: Open many GoAgents
BaseDir="/root/goagent/local"
cd $BaseDir
for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
do
cd ../local$i
nohup python proxy.py &
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment