slitaz-tools view hacker/.profile @ rev 12

Add hacker directory with many examples file for $HOME
author Christophe Lincoln <pankso@slitaz.org>
date Sun Dec 02 21:02:03 2007 +0100 (2007-12-02)
parents
children 03633c5d9e91
line source
1 # ~/.profile: Executed by Bourne-compatible login SHells.
2 #
4 # Path to personal scripts and executables (~/Bin).
5 #
6 if [ -d "$HOME/Bin" ] ; then
7 PATH=$HOME/Bin:$PATH
8 export export
9 fi
11 # Java home directory path.
12 #
13 #JAVA_HOME=$HOME/Bin/jre1.6.0_03
14 #JAVA_BINDIR=$JAVA_HOME/bin
15 #if [ -d "$HOME/Bin" ] ; then
16 # export PATH=$JAVA_BINDIR:$PATH
17 #fi
19 # Environnement variables and prompt for Ash SHell
20 # or Bash.
21 #
23 # Classic prompt.
24 PS1='\u@\h:\w\$ '
26 # Light green and blue colored prompt.
27 #PS1='\e[1;32m\u@\h\e[0m:\e[1;34m\w\e[0m\$ '
29 # Light blue or yellow.
30 #PS1='\e[1;34m\u@\h:\w\e[0m\$ '
31 #PS1='\[\033[1;33m\]\u@\h:\w\[\033[0m\]\$ '
33 EDITOR='nano'
34 PAGER='less -EM'
36 export PS1 EDITOR PAGER
38 umask 022