11 lines
143 B
Bash
11 lines
143 B
Bash
|
alias m="\
|
||
|
mount \
|
||
|
"
|
||
|
|
||
|
# remount read-only medium in read-write
|
||
|
alias remount="\
|
||
|
mount \
|
||
|
-o \"remount,rw\" \
|
||
|
\"/usr/lib/live/mount/medium\" \
|
||
|
"
|