aboutsummaryrefslogtreecommitdiff
path: root/shell/ash
blob: dc8cce03798a22ccd211754943813b2d1995e541 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
color="no"
case "$TERM" in
	xterm*) color=yes;;
	*256color) color=yes;;
esac

case "$-" in
*i*)
	set_pager
	set_editor
	setaliases

	export PS1="$ "
	if [ $(id -u) -eq 0 ] ; then
		export PS1="# "
	fi
;;
*) return ;;
esac