nnn/plugins/nmount

33 lines
661 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
# Description: Toggle mount status of a device using pmount
2019-04-25 16:38:38 +00:00
# If the device is not mounted, it will be mounted.
# If the device is mounted, it will be unmounted and powered down.
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
lsblk
echo
echo -n "device (e.g. sdc2): "
read dev
2019-04-21 06:44:03 +00:00
if [ -z "$dev" ]; then
exit 1
fi
echo
if grep -qs "$dev " /proc/mounts; then
pumount "$dev"
2019-04-25 16:38:38 +00:00
if [ "$?" -eq "0" ]; then
udisksctl power-off -b /dev/"$dev"
echo $dev ejected.
fi
else
pmount "$dev"
echo "$dev" mounted to "$(lsblk -n /dev/"$dev" | rev | cut -d' ' -f1 | rev)".
fi
read dummy