No mínimo, algo como um script e um apelido provavelmente funcionariam aqui ...
Talvez:
#!/bin/sh
# service-status
service "" ""
if [[ != "status ]]; then
service "" status
fi
Ou melhor ainda; já que service
é realmente systemctl
mesmo assim:
#!/bin/sh
# service-status
systemctl "" ""
if [[ != "status" ]]; then
systemctl status ""
fi
e adicione isso ao seu .bashrc
ou seu .bash_aliases
:
alias service="service-status";