summaryrefslogtreecommitdiffstats
path: root/.bash_exports
blob: 01ba895378e4de8c6ce1fc3070cebb9a9d0b4d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

. ~/.exports

if [ -x /usr/bin/dircolors ]; then
	if [ -r ~/.dircolors ]; then
		eval "$(dircolors -b ~/.dircolors)"
	else
		eval "$(dircolors -b)"
	fi
fi

[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"