rwx/sh/alias/mount.sh
2024-11-19 14:42:11 +01:00

5 lines
58 B
Bash

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