initial commit
[grml-shlib.git] / TODO
1  * service{Start,Stop,Restart} <name from /etc/init.d/>
2  * wrapper arround pgrep
3  * function to set C environment (lang)
4  * debug over function (setdebug), von außen DEBUG=x 1:1 übersetzung nach verbose
5  * paket umbenennen nach grml-shlib
6  * execute (secureInput verbessern) @mika
7  * getUserName <id> (is this user available on this system)
8  * update relToAbs (readlink -f)
9
10 function zsh_clear_env () {
11   for V in `set +`; do case "$V" in
12     '!'|'$'|'*'|'@'|'?'|'-'|'#'|[0-9]|V);;
13     **) typeset +r "$V"; unset "$V";;
14   esac; done
15   unset V
16   emulate zsh
17   export IFS=" \t\n"
18   export PATH="/bin:/usr/bin:/sbin:/usr/sbin"
19 }