diff options
author | Gitea <gitea@fake.local> | 2023-11-02 16:37:53 -0400 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2023-11-02 16:37:53 -0400 |
commit | f5730eb4136e56cadf51ae3395bf3aab6130131c (patch) | |
tree | 68672a352e5b658baa057f0b698840eb08192ef6 /.profile | |
parent | 20a702bc9bf78d99d2c5c4c65697ce25e78d36d7 (diff) |
Diffstat (limited to '.profile')
-rw-r--r-- | .profile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.profile b/.profile new file mode 100644 index 0000000..d89ea5a --- /dev/null +++ b/.profile @@ -0,0 +1,27 @@ +# ~/.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 + +# if running bash +if [ -n "$BASH_VERSION" ]; then + # include .bashrc if it exists + if [ -f "$HOME/.bashrc" ]; then + . "$HOME/.bashrc" + fi +fi + +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/bin" ] ; then + PATH="$HOME/bin:$PATH" +fi + +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/.local/bin" ] ; then + PATH="$HOME/.local/bin:$PATH" +fi |