From 22c9a661621432a05e2b4aa258c8b96dba478dbb Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 18 Nov 2024 16:10:14 +0100 Subject: [PATCH] m --- sh/alias/mount.sh | 10 ++-------- sh/cmd/mount.sh | 5 ----- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/sh/alias/mount.sh b/sh/alias/mount.sh index d6329c3..9aa0aad 100644 --- a/sh/alias/mount.sh +++ b/sh/alias/mount.sh @@ -1,11 +1,5 @@ -m() { +m() { sh_a__mount "${@}"; } +sh_a__mount() { mount \ "${@}" } - -# remount read-only medium in read-write -remount() { - mount \ - -o "remount,rw" \ - "/usr/lib/live/mount/medium" -} diff --git a/sh/cmd/mount.sh b/sh/cmd/mount.sh index d6329c3..4454c41 100644 --- a/sh/cmd/mount.sh +++ b/sh/cmd/mount.sh @@ -1,8 +1,3 @@ -m() { - mount \ - "${@}" -} - # remount read-only medium in read-write remount() { mount \