summaryrefslogtreecommitdiffstats
path: root/.profile
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-03-04 15:19:36 -0800
committerbnewbold <bnewbold@manus.(none)>2007-03-04 15:19:36 -0800
commit7818aad67cb48d86fe878057fdae96015f5c5898 (patch)
treed3c611bbe632bb89661bf1832d79d3b1ff4e00a1 /.profile
downloadopenwrt-repro-7818aad67cb48d86fe878057fdae96015f5c5898.tar.gz
openwrt-repro-7818aad67cb48d86fe878057fdae96015f5c5898.zip
initial checkin from manus
Diffstat (limited to '.profile')
-rw-r--r--.profile37
1 files changed, 37 insertions, 0 deletions
diff --git a/.profile b/.profile
new file mode 100644
index 0000000..c6728f7
--- /dev/null
+++ b/.profile
@@ -0,0 +1,37 @@
+# $FreeBSD: src/share/skel/dot.profile,v 1.21 2002/07/07 00:00:54 mp Exp $
+#
+# .profile - Bourne Shell startup script for login shells
+#
+# see also sh(1), environ(7).
+#
+
+# remove /usr/games and /usr/X11R6/bin if you want
+PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:$HOME/bin; export PATH
+
+# Setting TERM is normally done through /etc/ttys. Do only override
+# if you're sure that you'll never log in via telnet or xterm or a
+# serial line.
+# Use cons25l1 for iso-* fonts
+# TERM=cons25; export TERM
+
+JAVA_HOME="/usr/local/jdk1.5.0"; export JAVA_HOME
+MAVEN_HOME="/usr/local/share/java/maven"; export MAVEN_HOME
+
+BLOCKSIZE=K; export BLOCKSIZE
+EDITOR=vim; export EDITOR
+PAGER="less"; export PAGER
+
+# set ENV to a file invoked each time sh is started for interactive use.
+ENV=$HOME/.shrc; export ENV
+
+PS1="`whoami`@`hostname | sed 's/\..*//'`"
+case `id -u` in
+ 0) PS1="${PS1}# ";;
+ *) PS1="${PS1}$ ";;
+esac
+
+alias ls="ls -G"
+alias xterm_="xterm -rv +sb -ls"
+alias ":q"="exit"
+alias ":wq"="exit"
+alias ":q!"="exit"