The little things give you away... A collection of various small helper stuff
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

4 строки
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