summaryrefslogtreecommitdiff
path: root/package/base-files/src/etc/profile
blob: 78cf2fe3745be6dab34f842433ba7f20e6f228e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
export TERM=vt220
if [[ $(id -u) = 0 ]]; then
	export PS1='`whoami`@`hostname`:`pwd` # '
else
	export PS1='`whoami`@`hostname`:`pwd` $ '
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 "$@"; }