2023-08-02 09:08:27 +02:00
|
|
|
#!/bin/sh
|
|
|
|
clear
|
2023-11-08 12:46:39 +01:00
|
|
|
|
|
|
|
#!/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"
|
2023-08-02 09:08:27 +02:00
|
|
|
|