A bin folder, holding helpfull scripts and commands
Você não pode selecionar mais de 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.
12345678910111213141516 |
- #!/bin/sh
- clear
-
- #!/bin/sh
- #
-
- for s in $(tmux list-sessions -F '#{session_name}'); do
- p=$(tmux list-panes -F '#{pane_tty}' -t "$s")
- if [ "$p" = "$(tty)" ]; then
- # Session already running
- exit 0
- fi
- done
-
- 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"
|