Skip to content

Instantly share code, notes, and snippets.

@corbtastik
Created January 3, 2023 00:27
Show Gist options
  • Save corbtastik/7c2b9c3a985b7e956b195d8c46196f12 to your computer and use it in GitHub Desktop.
Save corbtastik/7c2b9c3a985b7e956b195d8c46196f12 to your computer and use it in GitHub Desktop.
Corb's bashrc file
# -----------------------------------------------------------------------------
# corbs-bashrc:v1
# -----------------------------------------------------------------------------
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment