2017-07-30 21:33:59 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-07-30 22:04:19 +00:00
|
|
|
echo -n "~> Going to wipe $blockdevice. You sure? (y/N) "
|
2017-07-30 21:33:59 +00:00
|
|
|
read answer
|
|
|
|
|
|
|
|
if [ "$answer" == "y" ]; then
|
|
|
|
echo "~> OK. Be patient now, that could take some time..."
|
|
|
|
dd if=/dev/zero of=$blockdevice status=progress
|
2017-07-30 22:05:02 +00:00
|
|
|
exit $?
|
2017-07-30 21:33:59 +00:00
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|