6 lines
81 B
Bash
6 lines
81 B
Bash
# clear terminal
|
|
c() { sh_a__clear "${@}"; }
|
|
sh_a__clear() {
|
|
clear \
|
|
"${@}"
|
|
}
|