Created
October 25, 2021 22:23
-
-
Save sachsgit/e8f588eba6f2c801b92cde6635842f51 to your computer and use it in GitHub Desktop.
Standard BASH RC file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# .bashrc | |
# User specific aliases and functions | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
if [ -f /etc/profile ]; then | |
. /etc/profile | |
fi | |
if [ -f $HOME/.bash_aliases ]; then | |
. $HOME/.bash_aliases | |
fi | |
### End of File ### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment