ambevar-dotfiles/.local/bin/udisks-unmount-all

18 lines
255 B
Plaintext
Raw Normal View History

2019-01-23 11:43:03 +01:00
#!/bin/sh
if [ "$1" = "-h" ]; then
cat <<EOF>&2
Usage: ${0##*/}
Automatically unmount external drives mounted with 'udisks'.
EOF
exit
fi
while IFS= read -r i; do
udisksctl unmount -b "$i"
done <<EOF
$(findmnt -n --output SOURCE /media/$USER/*)
EOF