aboutsummaryrefslogtreecommitdiff
path: root/shell/ash
blob: 18c2cf2c602536406e6503ec878b68ecc5f1b516 (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