rwx/sh/alias/mount.sh
2024-11-18 16:10:14 +01:00

5 lines
64 B
Bash

m() { sh_a__mount "${@}"; }
sh_a__mount() {
mount \
"${@}"
}