2021-09-06 01:45:23 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2021-09-06 09:19:40 +00:00
|
|
|
echo -e "\nInstalling cmake, clang and software-properties-common"
|
|
|
|
sudo apt install cmake clang software-properties-common -y
|
2021-09-06 01:45:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2021-09-06 09:19:40 +00:00
|
|
|
echo "Done! Run build.sh to build project"
|