#!/bin/bash
# source conf_vars.sh

ARCHLIST=${ARCHLIST:="amd64"}

for ARCH in $ARCHLIST; do
	apt-get remove `dpkg -l | grep $ARCH | cut -d' ' -f3`
done
apt-get remove `dpkg -l | grep gnueabi | cut -d' ' -f3`
# rm -rf  powerpc arm mips mipsel i386 sparc s390 amd64 m68k hppa alpha ia64 logs/* file.html
