3 lines
108 B
Bash
Executable file
3 lines
108 B
Bash
Executable file
#!/bin/sh
|
|
# Mount a partition by label automatically
|
|
sudo mount -o rw,X-mount.mkdir -L "$1" "${2:-/mnt/$1}"
|