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