summaryrefslogtreecommitdiff
path: root/etc/function
blob: 783d79bce442148cc1710ae8e6a6d6dbb5f06b1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
## 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 script
	function __sudo {
		if ((EUID)) {
			sudo $*
		} else {
			$*
		}
	}
	for script in $*; {
		__sudo /etc/init.d/$script ${0:l}
	}
}