rwx/sh/cmd/mount.sh

7 lines
115 B
Bash
Raw Normal View History

2023-05-14 23:12:22 +02:00
# remount read-only medium in read-write
2024-11-16 16:45:07 +01:00
remount() {
mount \
-o "remount,rw" \
"/usr/lib/live/mount/medium"
}