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

6 lines
77 B
Bash

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