From 2d9df70534a1e9703a0f3f0570910c70e38ddbb2 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Wed, 3 Feb 2016 20:27:02 -0800 Subject: [PATCH] Include /etc/bashrc if it exists for Fedora --- bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bashrc b/bashrc index 26909f9..1694985 100644 --- a/bashrc +++ b/bashrc @@ -39,3 +39,7 @@ fi if [ -f /opt/local/etc/profile.d/bash_completion.sh ]; then source /opt/local/etc/profile.d/bash_completion.sh fi + +if [ -f /etc/bashrc ]; then + source /etc/bashrc +fi