#!/bin/bash
MOUNT_POINT="/mnt/8086tiny"
LOOP_DEV="/dev/loop0"
sudo umount $MOUNT_POINT
sudo rmdir $MOUNT_POINT
sudo losetup -d $LOOP_DEV
