Skip to content

Commit f73b279

Browse files
committed
Fix
1 parent 695b46e commit f73b279

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rc/shell/aliases

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function set_alias_completion_source() {
3535
alias sudo='sudo ' # Enables the simultaneous use of sudo and other aliases
3636
alias lsmnt='lsblk -l | tail -n +2 | awk '\''length($7) { print $1" => "$7 }'\'''
3737

38-
if [ ! -f "/bin/busybox" ]; then
38+
if [ -f "/bin/busybox" ]; then
3939
alias grep='grep -a --color'
4040
alias pcregrep='pcregrep -a --color'
4141
else

0 commit comments

Comments
 (0)