Skip to content

Instantly share code, notes, and snippets.

@morphykuffour
Created July 4, 2021 15:31
Show Gist options
  • Save morphykuffour/3daeedb7ea08104c223a033706fa8270 to your computer and use it in GitHub Desktop.
Save morphykuffour/3daeedb7ea08104c223a033706fa8270 to your computer and use it in GitHub Desktop.
BashNotes.txt
Bash Loading Order
# The bash executable
/bin/bash
# The systemwide initialization file, executed for login shells
/etc/profile
# The personal initialization file, executed for login shells
~/.bash_profile
# The individual per-interactive-shell startup file
~/.bashrc
# The individual login shell cleanup file, executed when a login shell exits
~/.bash_logout
# Individual readline initialization file
~/.inputrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment