#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # Small function to print `vmctl status` if you only type `vmctl` if (( ARGC )); then command vmctl $@ else command vmctl status fi # END OF FILE #################################################################