8 lines
105 B
Plaintext
8 lines
105 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
sync
|
||
|
|
umount -l /mnt/sdcard
|
||
|
|
rm -rf /mnt/sdcard
|
||
|
|
|
||
|
|
echo "/mnt/sdcard is unmounted" > /dev/console
|