Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- su -c "
- if [ -e /mnt/phone ]
- then
- umount -t vfat /dev/sdc1 /mnt/phone
- umount -t vfat /dev/sdb1 /mnt/phone
- rmdir /mnt/phone
- else
- mkdir /mnt/phone
- mount -t vfat /dev/sdc1 /mnt/phone
- mount -t vfat /dev/sdb1 /mnt/phone
- fi
- "
Advertisement
Add Comment
Please, Sign In to add comment