mirror of
https://github.com/jarun/nnn.git
synced 2024-11-04 18:33:12 +00:00
45 lines
1.2 KiB
Bash
Executable file
45 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Description: Toggle mount status of a device using pmount
|
|
# If the device is not mounted, it will be mounted.
|
|
# If the device is mounted, it will be unmounted and powered down.
|
|
#
|
|
# Note:
|
|
# - The script uses Linux-specific lsblk to list block devices. Alternatives:
|
|
# macOS: "diskutil list"
|
|
# BSD: "geom disk list"
|
|
# - The script uses udisksctl (from udisks2) to pwoer down devices. This is also Linux-specific.
|
|
# Users on non-Linux platforms can comment it and use an alterntive to power-down disks.
|
|
#
|
|
# Shell: POSIX compliant
|
|
# Author: Arun Prakash Jana
|
|
|
|
lsblk
|
|
|
|
echo
|
|
echo "Make sure you aren't still in the mounted device."
|
|
echo -n "device (e.g. sdc2): "
|
|
read dev
|
|
|
|
while ! [ -z "$dev" ]
|
|
do
|
|
if grep -qs "$dev " /proc/mounts; then
|
|
sync
|
|
pumount "$dev"
|
|
if [ "$?" -eq "0" ]; then
|
|
echo "$dev" unmounted.
|
|
udisksctl power-off -b /dev/"$dev"
|
|
if [ "$?" -eq "0" ]; then
|
|
echo "$dev" ejected.
|
|
fi
|
|
fi
|
|
else
|
|
pmount "$dev"
|
|
echo "$dev" mounted to "$(lsblk -n /dev/"$dev" | rev | cut -d' ' -f1 | rev)".
|
|
fi
|
|
|
|
echo
|
|
echo -n "next device: "
|
|
read dev
|
|
done
|