From: martin f. krafft Date: Wed, 7 May 2008 18:25:23 +0000 (+0100) Subject: ulimit instead of no core specific X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a22b088d50c3e92dc904b02703015770f1e98b62;p=zsh.git ulimit instead of no core specific --- diff --git a/.zsh/zprofile/00_nocores b/.zsh/zprofile/00_nocores deleted file mode 100644 index d295464..0000000 --- a/.zsh/zprofile/00_nocores +++ /dev/null @@ -1,13 +0,0 @@ -# zprofile/00_nocores -# -# Turns of core file generation -# -# Copyright © 1994–2008 martin f. krafft -# Released under the terms of the Artistic Licence 2.0 -# -# Source repository: http://git.madduck.net/v/etc/zsh.git -# - -ulimit -c 0 - -# vim:ft=zsh diff --git a/.zsh/zprofile/00_ulimit b/.zsh/zprofile/00_ulimit new file mode 100644 index 0000000..84a0961 --- /dev/null +++ b/.zsh/zprofile/00_ulimit @@ -0,0 +1,14 @@ +# zprofile/00_ulimit +# +# sets process limits +# +# Copyright © 1994–2008 martin f. krafft +# Released under the terms of the Artistic Licence 2.0 +# +# Source repository: http://git.madduck.net/v/etc/zsh.git +# + +# disable core files +ulimit -c 0 + +# vim:ft=zsh