My build of nnn with minor changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
661 B

  1. #!/usr/bin/env sh
  2. # Description: Toggle mount status of a device using pmount
  3. # If the device is not mounted, it will be mounted.
  4. # If the device is mounted, it will be unmounted and powered down.
  5. #
  6. # Shell: POSIX compliant
  7. # Author: Arun Prakash Jana
  8. lsblk
  9. echo
  10. echo -n "device (e.g. sdc2): "
  11. read dev
  12. if [ -z "$dev" ]; then
  13. exit 1
  14. fi
  15. echo
  16. if grep -qs "$dev " /proc/mounts; then
  17. pumount "$dev"
  18. if [ "$?" -eq "0" ]; then
  19. udisksctl power-off -b /dev/"$dev"
  20. echo $dev ejected.
  21. fi
  22. else
  23. pmount "$dev"
  24. echo "$dev" mounted to "$(lsblk -n /dev/"$dev" | rev | cut -d' ' -f1 | rev)".
  25. fi
  26. read dummy