diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-04-18 23:48:18 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-04-19 00:25:07 +0530 |
commit | 430945d42063482cc2485dfec541a851df4f7556 (patch) | |
tree | 999b464bf8f4eb6de7d1ef4b43ec99f7581bc8bd /plugins/nmount | |
parent | 9167192d31e5a52880c0207aa3b11f1c02b1504e (diff) | |
download | nnn-430945d42063482cc2485dfec541a851df4f7556.tar.gz |
Plugin nmount: toggle mount status of a device
Diffstat (limited to 'plugins/nmount')
-rwxr-xr-x | plugins/nmount | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/nmount b/plugins/nmount new file mode 100755 index 0000000..a0782e4 --- /dev/null +++ b/plugins/nmount @@ -0,0 +1,23 @@ +#!/usr/bin/env sh + +# Description: Toggle mount status of a device using pmount +# If the device is mounted, it will be unmounted and vice versa. +# +# Shell: POSIX compliant +# Author: Arun Prakash Jana + +lsblk +echo +echo -n "device (e.g. sdc2): " +read dev +echo + +if grep -qs "$dev " /proc/mounts; then + pumount "$dev" + echo $dev unmounted. +else + pmount "$dev" + echo "$dev" mounted to "$(lsblk -n /dev/"$dev" | rev | cut -d' ' -f1 | rev)". +fi + +read dummy |