#!/bin/bash

I1=I
I2=("MAKE BOOTFLOPPY")

function make_bootflop {

    select_inputfile

    if [ "$YNRETVAL" = "0" ]; then

	# dd if="$input" of=${FLOP} bs=10k count=144
	exec_command "dd if=$INFILE of=${FLOP}"

    fi

}
