mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-19 10:35:34 +08:00
12 lines
330 B
Bash
12 lines
330 B
Bash
|
#
|
||
|
# /etc/profile.bash
|
||
|
# Global settings for bash shells
|
||
|
#
|
||
|
|
||
|
#In the future we may want to add more ulimit entries here,
|
||
|
# in the offchance that /etc/security/limits.conf is skipped
|
||
|
ulimit -Sc 0 #Don't create core files
|
||
|
|
||
|
# Source our global bashrc file, to remove duplication of effort
|
||
|
[ -r /etc/bash.bashrc ] && . /etc/bash.bashrc
|