Last active
December 10, 2019 00:39
-
-
Save thatmattlove/dbb07719c7f04064649a25e6e9ff5484 to your computer and use it in GitHub Desktop.
bird requirements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Since the BIRD docs are the suck, and every time I have to install BIRD it takes me a full 30 minutes | |
| # to figure out which libraries are missing on vanilla Ubuntu and install them, try again, rinse, | |
| # repeat, here's a script to do it for you. | |
| DEPS="m4 bison flex libncurses5-dev libreadline-dev" | |
| install_deps() { | |
| sudo apt install -y $DEPS | |
| } | |
| install_deps | |
| exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment