Skip to content

Instantly share code, notes, and snippets.

@dllud
dllud / pmount-all
Created February 19, 2014 02:59
pmount-all - script to (un)mount all USB disks' partitions using pmount.
#!/bin/bash
if [ "$1" != "mount" ] && [ "$1" != "umount" ]; then
echo "(Un)mounts all USB disks partitions. Usage: "
echo pmount-all mount
echo pmount-all umount
exit 0
fi
readarray sd < <(ls /dev | grep sd[b-z][1-9])
for ((i=0; i<${#sd[@]}; i++));