Não use alias. Use uma função shell. Assim
function sysctl_start {
systemctl start "$1" && echo SUCCESS || echo FAILURE
}
ou melhor ainda
function sysctl_start {
systemctl start "$1"
systemctl status "$1"
}
Se você quiser apenas um tratamento especial para iniciar, mas mantenha o nome, escreva um wrapper
function systemctl {
if [ "$2" = start ]; then
shift
/usr/bin/systemctl start "$@" && echo "SUCCESS" || echo "FAILURE"
else
/usr/bin/systemctl "$@"
fi
}