From 373652f6b9622fb2d3f78b7b3d8c60d0b34966c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20B=C3=BCckendorf?= Date: Mon, 14 Jan 2019 10:16:34 +0100 Subject: [PATCH] bashrc.d: Added some aliases for ls variants(needs further work) --- .bashrc.d/ls.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .bashrc.d/ls.sh diff --git a/.bashrc.d/ls.sh b/.bashrc.d/ls.sh new file mode 100644 index 0000000..ebfd09f --- /dev/null +++ b/.bashrc.d/ls.sh @@ -0,0 +1,4 @@ +alias ls="ls --color=auto" +alias ll="ls --human-readable --color=auto -l" +alias la="ls --human-readable --all --color=auto -l" +alias lA="ls --human-readable --almost-all --color=auto -l"