11 lines
189 B
Bash
11 lines
189 B
Bash
#!/bin/sh
|
|
export BLOCKSIZE=K
|
|
export EDITOR=vi
|
|
export ENV="$HOME/.shrc"
|
|
export LANG=C
|
|
export PAGER=less
|
|
|
|
if [ -r "$HOME/.profile.$(hostname -s)" ]
|
|
then
|
|
. "$HOME/.profile.$(hostname -s)"
|
|
fi
|