#!/bin/sh 
###This script need 2 arguments 
###ex: ./bb simple_nas neutral
if [ $# -ne 2 ] ; then
    echo "ex: ./bb simple_nas neutral"
    exit 1
fi

# We need go to the diff dir at first
cd diff/"$1"/"$2"

# Do bind
./mipsBind "$1".par "$1".bin

