summaryrefslogtreecommitdiff
path: root/package/base-files/src/etc/profile
blob: 1b8f4a6a67dd7f9a0509cf39a418d93a87275665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
export TERM=vt220
if [[ $(id -u) = 0 ]]; then
	export PS1='# '
else
	export PS1='$ '
	export HOME=/tmp
fi
cat /etc/banner 2>&-
[ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
[ -x /usr/bin/arp ] || arp() { cat /proc/net/arp; }
[ -x /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 "$@"; }