5 lines
114 B
Bash
5 lines
114 B
Bash
# make sure LS behaves as we want it to
|
|
if [[ $OSTYPE = (linux)* ]]; then
|
|
export LS_OPTIONS='--color=auto'
|
|
fi
|