From d22e25bdb7382301f97c928af60159e633acda59 Mon Sep 17 00:00:00 2001 From: urosm Date: Sat, 21 Sep 2024 18:03:42 +0200 Subject: [PATCH] .bashrc: drop non-POSIX -h flag in ls alias --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 7018df8..516b078 100644 --- a/.bashrc +++ b/.bashrc @@ -15,7 +15,7 @@ alias diff="diff --color=auto" alias grep="grep --color=auto" alias ls="ls --color=auto" alias ll="ls -AF1" -alias lll="ls -AFlh" +alias lll="ls -AFl" # history HISTCONTROL="ignoreboth:erasedups"