17 lines
422 B
Plaintext
17 lines
422 B
Plaintext
# $OpenBSD: dot.profile,v 1.4 2005/02/16 06:56:57 matthieu Exp $
|
|
#
|
|
# sh/ksh initialization
|
|
|
|
PATH=$HOME/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin:/usr/games:/usr/local/jdk-1.8.0/bin:.
|
|
export PATH HOME TERM
|
|
|
|
# if running bash
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
fi
|
|
|
|
export LC_CTYPE="en_US.UTF-8"
|