mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
More intuitive nmount
This commit is contained in:
parent
4a98d8db50
commit
dd42726c5b
|
@ -4,6 +4,8 @@
|
||||||
# If the device is not mounted, it will be mounted.
|
# If the device is not mounted, it will be mounted.
|
||||||
# If the device is mounted, it will be unmounted and powered down.
|
# If the device is mounted, it will be unmounted and powered down.
|
||||||
#
|
#
|
||||||
|
# Runs `lsblk` if 'l' is entered, exits on 'Return`.
|
||||||
|
#
|
||||||
# Note:
|
# Note:
|
||||||
# - The script uses Linux-specific lsblk to list block devices. Alternatives:
|
# - The script uses Linux-specific lsblk to list block devices. Alternatives:
|
||||||
# macOS: "diskutil list"
|
# macOS: "diskutil list"
|
||||||
|
@ -14,31 +16,37 @@
|
||||||
# Shell: POSIX compliant
|
# Shell: POSIX compliant
|
||||||
# Author: Arun Prakash Jana
|
# Author: Arun Prakash Jana
|
||||||
|
|
||||||
|
prompt="device name ['l' lists]: "
|
||||||
|
|
||||||
lsblk
|
lsblk
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "Make sure you aren't still in the mounted device."
|
echo "Make sure you aren't still in the mounted device."
|
||||||
echo -n "device (e.g. sdc2): "
|
echo -n "$prompt"
|
||||||
read dev
|
read dev
|
||||||
|
|
||||||
while ! [ -z "$dev" ]
|
while ! [ -z "$dev" ]
|
||||||
do
|
do
|
||||||
if grep -qs "$dev " /proc/mounts; then
|
if [ "$dev" = "l" ]; then
|
||||||
sync
|
lsblk
|
||||||
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
|
else
|
||||||
pmount "$dev"
|
if grep -qs "$dev " /proc/mounts; then
|
||||||
echo "$dev" mounted to "$(lsblk -n /dev/"$dev" | rev | cut -d' ' -f1 | rev)".
|
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
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo -n "next device: "
|
echo -n "$prompt"
|
||||||
read dev
|
read dev
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue