sh/shell/alias/mount.sh

12 lines
142 B
Bash
Raw Normal View History

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