7 lines
114 B
Bash
7 lines
114 B
Bash
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
umount -R /mnt
|
|
|
|
echo "All done! You should have a freshly baked raw disk image now"
|