The little things give you away... A collection of various small helper stuff
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

4 wiersze
344 B

  1. #!/bin/bash
  2. # Launch pipeline instances, each using a different IP and a separate directory, in windows in tmux session 'instances'
  3. for ip in ...; do tmux new-window -t instances "bash -c 'cd ~/whatever-grab.${ip}; run-pipeline3 pipeline.py --disable-web-server --concurrent 1 --context-value bind_address=${ip} YOURNICKHERE; exec bash'"; done