Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/bin/bash
  2. mount_point=/media/directory
  3. umount $mount_point && rmdir $mount_point &
  4.  
  5. ./umount.sh /media/dir
  6.  
  7. #!/bin/bash
  8. mount_point=$1
  9. umount $mount_point && rmdir $mount_point &
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement