esp32_bluetooth_classic_sni.../requirements.sh

12 lines
333 B
Bash
Raw Normal View History

2021-09-06 01:45:23 +00:00
#!/usr/bin/env bash
echo -e "\nInstalling cmake and software-properties-common"
sudo apt install cmake software-properties-common -y
echo -e "\n\nInstalling latest stable wireshark"
sudo add-apt-repository --yes ppa:wireshark-dev/stable
sudo apt-get update
sudo apt install wireshark -y
echo "Done! Run build.sh to build project"