x13thangelx

mount

Sep 10th, 2011
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. su -c "
  4. if [ -e /mnt/phone ]
  5. then
  6. umount -t vfat /dev/sdc1 /mnt/phone
  7. umount -t vfat /dev/sdb1 /mnt/phone
  8. rmdir /mnt/phone
  9. else
  10. mkdir /mnt/phone
  11. mount -t vfat /dev/sdc1 /mnt/phone
  12. mount -t vfat /dev/sdb1 /mnt/phone
  13. fi
  14. "
Advertisement
Add Comment
Please, Sign In to add comment