12 lines
333 B
Bash
12 lines
333 B
Bash
|
#!/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"
|