#!/bin/bash cd code_boost/src/build/ cmake .. if [ -f Makefile ]; then make else echo "CMake did not finish successfully." exit fi if [ $? -eq 0 ]; then cp libpcapreader.so ../../../code/ID2TLib/ else echo "Make did not finish successfully." exit fi cd ../../../ #ln -s code/CLI.py id2t.py # Create the ID2T script cat >./id2t <