wok-next view slitaz-hacker/stuff/profile @ rev 198

Add pkg slitaz-hacker (user hacker for LiveCD)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 13 00:12:35 2008 +0100 (2008-02-13)
parents
children faba01f76e76
line source
1 # ~/.profile: Executed by Bourne-compatible login SHells.
2 #
4 # Path to personal scripts and executables (~/.local/bin).
5 #
6 if [ -d "$HOME/.local/bin" ] ; then
7 PATH=$HOME/.local/bin:$PATH
8 export PATH
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 # Alias definitions.
39 #
40 alias df='df -h'
41 alias du='du -h'
43 alias ls='ls -p'
44 alias ll='ls -l'
45 alias la='ls -la'
47 # Avoid errors... use -f to skip confirmation.
48 alias rm='rm -i'
49 alias mv='mv -i'
51 umask 022