From 48aee0590efa6c52314f7542a1b5fd4d94373efe Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Wed, 27 May 2020 12:15:48 +0200 Subject: [PATCH] bash: Alias ll to 'ls -lh'. --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 7a68cfc9..1a7ef0be 100644 --- a/.bashrc +++ b/.bashrc @@ -32,7 +32,7 @@ mkcd(){ } alias ls='ls -p --color=auto' -alias ll='ls -l' +alias ll='ls -lh' alias la='ls -lAh' alias l='ls -1' alias grep='grep --color=auto'