summaryrefslogtreecommitdiffstats
path: root/rescue/tree/etc/profile
blob: 800ce85ae84128c7059b05c176bcfd7b656dbf39 (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
# /etc/profile
# (c) Mandrakesoft, Chmouel Boudjnah <chmouel>

# System wide environment and startup programs
# Functions and aliases go in /etc/bashrc

PROFILE_LOADED=1

PATH=/usr/bin:/bin:/sbin:/usr/sbin:/usr/X11R6/bin:/mnt/sbin:/mnt/bin:/mnt/usr/sbin:/mnt/usr/bin

PS1="[root@rescue \w]\\$ "
ls () { /bin/ls --color=auto -F "$@";}
ll () { /bin/ls --color=auto -Fl "$@";}
d () { /bin/ls --color=auto -F "$@";}
s () { cd .. ;}
which () { type -p "$@" ;}
HOSTNAME=rescue
HISTSIZE=1000
HISTFILESIZE=1000

INPUTRC=/etc/inputrc
export PATH PS1 USER HOSTNAME HISTSIZE HISTFILESIZE INPUTRC

cat /etc/issue