From bc3744f711795c12bb0a0d2cb8dba2ae3e5c5e3f Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Mon, 16 Dec 2024 13:36:00 +0000 Subject: [PATCH] feat(bash): add `lll` which runs `ls -lah | less` (#9) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/9 --- .bash_aliases | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.bash_aliases b/.bash_aliases index 3f26c86..b7a9259 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -7,6 +7,8 @@ mkcdir () { # ls -la alias l="ls -lh" alias ll="ls -lah" +alias lll="ls -lah | less" + # cd + cdl () { cd -P -- "$1" &&