Skip to content

Instantly share code, notes, and snippets.

@sachsgit
Created October 25, 2021 22:23
Show Gist options
  • Save sachsgit/e8f588eba6f2c801b92cde6635842f51 to your computer and use it in GitHub Desktop.
Save sachsgit/e8f588eba6f2c801b92cde6635842f51 to your computer and use it in GitHub Desktop.
Standard BASH RC file
#!/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