workstation/roles/home-cli/files/profile

12 lines
189 B
Text
Raw Normal View History

#!/bin/sh
2022-08-19 14:52:07 +00:00
export BLOCKSIZE=K
export EDITOR=vi
export ENV="$HOME/.shrc"
2022-08-19 14:52:07 +00:00
export LANG=C
export PAGER=less
2021-02-09 16:27:08 +00:00
2022-08-19 14:52:07 +00:00
if [ -r "$HOME/.profile.$(hostname -s)" ]
then
. "$HOME/.profile.$(hostname -s)"
2021-02-09 16:27:08 +00:00
fi