blob: 9629d983fc27e62ec0db5241552c3b416770c204 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## vim:ft=zsh
# zsh functions
autoload -U compinit
autoload catch throw
autoload zargs
# own functions
for funcfile in $ZDIR/functions/*(*N);
autoload ${funcfile:t}
unset funcfile
function Start Stop Restart Reload {
typeset action
for action in $*; {
sudo /etc/init.d/$1 ${0:l}
}
}
|