alpha
Login
or
Join now
j3s.sh
/
dotfiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
my dotz
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
*
author
Jes Olson
date
4 years ago
(Oct 25, 2021, 10:48 AM -0500)
commit
9da3caae
9da3caae557febf4f1af63eb68b841d6a72baa35
parent
92f1e79f
92f1e79f79b0eb92c58d18bae63ef6910ef0aa53
+1
-6
1 changed file
Expand all
Collapse all
Unified
Split
.rc
+1
-6
.rc
Reviewed
···
27
27
esac
28
28
}
29
29
30
30
-
# yep still needed
31
31
-
if ls --version 2>&1 | grep -i gnu > /dev/null
32
32
-
then
33
33
-
alias ls='ls --color=auto '
34
34
-
elif ls --version 2>&1 | grep -i busybox > /dev/null
35
35
-
then
30
30
+
if ls --version 2>&1 | grep -iE "gnu|busybox" > /dev/null; then
36
31
alias ls='ls --color=auto '
37
32
fi
38
33