sh/sh/cmd/mount.sh
2024-11-18 12:38:15 +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"
}