From 619cd9212d8daa852facab0b7385ea209a7adc67 Mon Sep 17 00:00:00 2001 From: "chawley [chawley]" Date: Tue, 20 Feb 2024 09:25:56 -0500 Subject: [PATCH] Fixed alias for ls Somehow I had it alised twice --- .shell_aliases | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.shell_aliases b/.shell_aliases index 83a7ae3..388d319 100644 --- a/.shell_aliases +++ b/.shell_aliases @@ -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