blob: a0782e450641386d672a01986431ad8f0d7a7c55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|