diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2012-09-12 10:24:01 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2012-09-12 10:24:01 +0200 |
commit | b6ca466859b0bbe1dc0614d62a48b3ca8c513330 (patch) | |
tree | 3ea850c2f92d176a8b744ef132595c75471b89f9 /.zsh/zprofile | |
parent | 2ccef9e5c9295b85ecaa70b2abdb2574bce6d06c (diff) |
Enable coredumps
Diffstat (limited to '.zsh/zprofile')
-rw-r--r-- | .zsh/zprofile/00_ulimit | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.zsh/zprofile/00_ulimit b/.zsh/zprofile/00_ulimit new file mode 100644 index 0000000..95e228c --- /dev/null +++ b/.zsh/zprofile/00_ulimit @@ -0,0 +1,13 @@ +# zprofile/00_ulimit +# +# sets process limits +# +# Copyright © 2012 Tobias Klauser <tklauser@distanz.ch> +# Released under the terms of the Artistic Licence 2.0 +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git + +# enable core files +ulimit -c unlimited + +# vim:ft=zsh |