rwx/sh/alias/mount.sh

12 lines
142 B
Bash
Raw Normal View History

2024-11-18 15:08:55 +00:00
m() {
mount \
"${@}"
}
# remount read-only medium in read-write
remount() {
mount \
-o "remount,rw" \
"/usr/lib/live/mount/medium"
}