Fixed alias for ls

Somehow I had it alised twice
This commit is contained in:
chawley [chawley]
2024-02-20 09:25:56 -05:00
parent e4c977f124
commit 619cd9212d

View File

@@ -14,13 +14,12 @@ alias fgrep='fgrep --color=auto' # show differences in colour
# File Listing
# Must have lsd installed (https://github.com/lsd-rs/lsd)
alias ls='lsd '
alias l='ls -CF' # list with Columns
alias la='ls -CFA' # l with . and ..
alias ll='ls -l' # long list
alias lla='ls -al' # ll with . and ..
alias ls='ls -hF --color=tty' # classify files in colour
alias lls='ls -lh --sort=size --reverse'
alias llt='ls -l -t -r'
#alias l='ls -CF' # list with Columns
#alias la='ls -CFA' # l with . and ..
#alias ll='ls -l' # long list
#alias lla='ls -al' # ll with . and ..
#alias lls='ls -lh --sort=size --reverse'
#alias llt='ls -l -t -r'
# Extras
alias ping='ping -c 5' # Stop pinging after 5 pings