#!/bin/bash

theFormat="$1"
theDisk="$2"
theSize="$3"

if [ -f $theDisk ]; then 
    echo "SKIP $theDisk"
else 
    qemu-img create -f "$theFormat" "$theDisk" "$theSize"
fi
