#!/bin/bash
# remove danling loop mounts
/bin/bash -c 'for f in $(/usr/bin/df | grep ^/dev/loop); do /usr/bin/umount $f; done'
