blob: 317dcf07074b3ce4d389ef8c4ddf89e9238e78c6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/zsh
## No more core dumps :)
ulimit -c 0
umask 002
##
## sanity
##
[[ -t 0 ]] && /bin/stty erase "^H" intr "^C" susp "^Z" dsusp "^Y" stop "^S" start "^Q" kill "^U" >& /dev/null
|