#!/bin/bash

echo
while [ "$#" != 0 ]; do
	echo -en "	""Tworzenia konenera "$1
	tar cf $1.tar /opt/distroimages/$1 /tftpboot/distroimages/$1 &>> /dev/null
	echo "	""[ ZROBIONO ]"
	shift
done
echo
