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

6 lines
75 B
Bash

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