A bin folder, holding helpfull scripts and commands
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

mqtt_smarthome 391B

12345678910111213141516
  1. #!/bin/sh
  2. clear
  3. #!/bin/sh
  4. #
  5. for s in $(tmux list-sessions -F '#{session_name}'); do
  6. p=$(tmux list-panes -F '#{pane_tty}' -t "$s")
  7. if [ "$p" = "$(tty)" ]; then
  8. # Session already running
  9. exit 0
  10. fi
  11. done
  12. tmux attach-session -t mqtt_smarthome || tmux new-session -s mqtt_smarthome "/opt/mqtt_sniffer/venv/bin/python /opt/mqtt_sniffer/mqtt_sniffer.py -f mqtt.home"