From c2dfffd0dfc2a6ab81103c377ee0e6a0ea7faa6a Mon Sep 17 00:00:00 2001 From: seajee Date: Tue, 11 Nov 2025 22:50:46 +0100 Subject: [PATCH] [bash] Add alias 'l' --- bash/.bashrc | 1 + 1 file changed, 1 insertion(+) diff --git a/bash/.bashrc b/bash/.bashrc index 7179b48..71ff433 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -8,6 +8,7 @@ # Aliases alias ls='ls --color=auto' alias ll='ls -alhF' +alias l='ll' alias grep='grep --color=auto' alias sl='sl -e' alias fetch='fastfetch'