rwx/sh/alias/clear.sh
2024-11-18 15:33:44 +01:00

6 lines
81 B
Bash

# clear terminal
c() { sh_a__clear "${@}"; }
sh_a__clear() {
clear \
"${@}"
}