I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
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 | |
| wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz | |
| tar xzf protobuf-2.6.1.tar.gz | |
| cd protobuf-2.6.1 | |
| sudo apt-get update | |
| sudo apt-get install build-essential | |
| sudo ./configure | |
| sudo make | |
| sudo make check | |
| sudo make install |