blob: 45a15e7c673faffe234e2c4882c3560dce5af96b (
plain)
1
2
3
4
5
6
7
8
|
for i in $ZDIR/functions/*; {
autoload $i:t
}
# from https://git.tabularazor.org/~mikael/etc/tree/zsh/functions
for action in Start Restart Stop Reload Zap; {
eval "$action() { sudo /etc/init.d/\$1 ${action:l} ; }"
}
|