29 lines
1.1 KiB
Bash
29 lines
1.1 KiB
Bash
################################################################################
|
|
# File: "~/.bash_profile"
|
|
# Intro: Personal login script for BASH.
|
|
# Author: Leiqin Lu
|
|
# See also: personal logout script for BASH, "~/.bash_logout";
|
|
# system login script for BASH, "/etc/profile";
|
|
# personal startup script for BASH, "~/.bashrc";
|
|
# system startup script for BASH, "/etc/bashrc".
|
|
################################################################################
|
|
|
|
# Execute personal startup script for BASH
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
|
|
# User specific environment and startup programs
|
|
unset USERNAME
|
|
|
|
################################################################################
|
|
# End Of File: "~/.bash_profile"
|
|
################################################################################
|
|
|
|
# Added by LM Studio CLI (lms)
|
|
export PATH="$PATH:/Users/luk/.cache/lm-studio/bin"
|
|
|
|
# Added by OrbStack: command-line tools and integration
|
|
# This won't be added again if you remove it.
|
|
source ~/.orbstack/shell/init.bash 2>/dev/null || :
|