Skip to content

Instantly share code, notes, and snippets.

@duksis
Created December 13, 2012 13:40
Show Gist options
  • Save duksis/4276441 to your computer and use it in GitHub Desktop.
Save duksis/4276441 to your computer and use it in GitHub Desktop.
Default CentOS bash_profile and bashrc files
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
@Rizkianasm
Copy link

thanks

@Sinan81
Copy link

Sinan81 commented Apr 26, 2023

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment