When you define a bash function you can call bash commands with command command.
function ls() {
clear
command ls "$@"
}
How would you pipe commands in bash function?
e.g.
function ls() {
clear
command ls "$@" | head
}
EDIT: The output would be OK, but there is --color=auto. Look here
clear; ls | head, but I want function, not aliasls?