14 lines
634 B
Bash
14 lines
634 B
Bash
# ~/.profile: executed by the command interpreter for login shells.
|
|
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login exists.
|
|
# See /usr/share/doc/bash/examples/startup-files for examples. the files are located in the bash-doc package.
|
|
# The default umask is set in /etc/profile; for setting the umask for ssh logins, install and configure the libpam-umask package. `umask 022`
|
|
|
|
[[ -n "$BASH_VERSION" && -f "$HOME/.bashrc" ]] \
|
|
&& source "$HOME/.bashrc"
|
|
[[ -f "$HOME/.bash/system/index.sh" ]] \
|
|
&& source "$HOME/.bash/system/index.sh"
|
|
|
|
if [ -d "$HOME/.local/bin" ] ; then
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
fi
|