#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ (( $+commands[systemctl] )) || { print -u2 "Could not find systemctl"; return 1 } print -z systemctl start $historywords[1] # END OF FILE #################################################################