Skip to content

Instantly share code, notes, and snippets.

@nopeless
Last active September 17, 2025 05:18
Show Gist options
  • Select an option

  • Save nopeless/7f5030ae51d23888bd4bbc57b1f744a6 to your computer and use it in GitHub Desktop.

Select an option

Save nopeless/7f5030ae51d23888bd4bbc57b1f744a6 to your computer and use it in GitHub Desktop.
flowchart TD
    A["Start Bash Shell"] --> B{"Login Shell?"}
    
    B -- Yes --> C["/etc/profile"]
    C --> D{"~/.bash_profile exists?"}
    D -- Yes --> E["~/.bash_profile"]
    D -- No --> F["~/.profile"]
    
    E --> G{"Source ~/.bashrc?"}
    F --> G
    G -- Yes --> H["~/.bashrc"]
    
    B -- No --> J{"Interactive Shell?"}
    J -- Yes --> H

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