#!/bin/bash
#

dirs="libc6-dev g++ xlibs-dev"

if [ -n "$1" ]
then
  dirs="$1"
fi

for d in $dirs
do
  dpkg -i $d/*.deb
done
