workstation/roles/home-cli/files/profile

21 lines
344 B
Text
Raw Normal View History

#!/bin/sh
#if [ -r /etc/profile ]; then
# . /etc/profile
#fi
export BASH_ENV="$HOME/.bashrc"
export BLOCKSIZE="K"
export EDITOR="vi"
export ENV="$HOME/.shrc"
export LANG="en_GB.UTF-8"
export PAGER="less"
if [ -r $HOME/.profile.$(hostname -s) ]; then
. $HOME/.profile.$(hostname -s)
fi
2021-02-09 16:27:08 +00:00
if [ -n "$SSH_TTY" ]; then
. $HOME/.shrc
fi