#!/bin/bash

dd if=/dev/zero of=blk.ext2 bs=1M count=128
mkfs.ext2 blk.ext2
sudo mount -t ext2 -o loop blk.ext2 /mnt
echo world | sudo tee /mnt/hello
sudo umount /mnt