sh/shell/alias/mount.sh
2024-11-16 16:45:07 +01:00

11 lines
142 B
Bash

m() {
mount \
"${@}"
}
# remount read-only medium in read-write
remount() {
mount \
-o "remount,rw" \
"/usr/lib/live/mount/medium"
}