rwx/sh/alias/mount.sh

12 lines
142 B
Bash
Raw Normal View History

2024-11-16 16:45:07 +01:00
m() {
mount \
"${@}"
}
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"
}