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