summaryrefslogtreecommitdiffstats
path: root/generic/etc/profile
blob: 12d36078b37fe02b1d8260dc3473b5e6ea24f23d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# /etc/profile
#
# $Id$
#

export PATH="$PATH:/usr/bin:/bin:/sbin"

#umask 022

# This fixes the backspace when telnetting in.
if [ "$TERM" != "linux" ]; then
        stty erase ^H
fi

PS1=@PS1@
PS2=@PS2@
PS4=@PS4@

alias vim='vi'
alias ll='ls -l'
alias ..='cd ..'
alias ...='cd ../..'
alias md='mkdir'
alias rd='rmdir'

# Exec local profile

if [ -e "/etc/profile.local" ]; then
	echo "running /etc/profile.local"
	. /etc/profile.local
fi