Compare commits

..

No commits in common. "338c606bb125041abb8f96bc4f2503dc0cad2f94" and "571aa5dc3dc85091b3f652036b72f3a4b701e596" have entirely different histories.

4 changed files with 6 additions and 3 deletions

3
mqtt_localhost Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
clear
/opt/mqtt_sniffer/venv/bin/python /opt/mqtt_sniffer/mqtt_sniffer.py -f localhost -n

View File

@ -12,5 +12,5 @@ for s in $(tmux list-sessions -F '#{session_name}'); do
fi
done
tmux attach-session -t mqtt_smarthome || tmux new-session -s mqtt_smarthome "~/my_apps/mqtt_sniffer/venv/bin/python ~/my_apps/mqtt_sniffer/mqtt_sniffer.py -f mqtt.home"
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"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#
~/my_apps/mqtt_sniffer/venv/bin/python ~/my_apps/mqtt_sniffer/mqtt_sniffer.py $*
/opt/mqtt_sniffer/venv/bin/python /opt/mqtt_sniffer/mqtt_sniffer.py $*

View File

@ -12,5 +12,5 @@ for s in $(tmux list-sessions -F '#{session_name}'); do
fi
done
tmux attach-session -t mqtt_test_smarthome || tmux new-session -s mqtt_test_smarthome "~/my_apps/mqtt_sniffer/venv/bin/python ~/my_apps/mqtt_sniffer/mqtt_sniffer.py -f mqtt.home -p 1884 -n"
tmux attach-session -t mqtt_test_smarthome || tmux new-session -s mqtt_test_smarthome "/opt/mqtt_sniffer/venv/bin/python /opt/mqtt_sniffer/mqtt_sniffer.py -f mqtt.home -p 1884 -n"