The little things give you away... A collection of various small helper stuff
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

4 linhas
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