summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReiner Herrmann <reiner@reiner-h.de>2017-10-03 12:41:09 +0200
committerReiner Herrmann <reiner@reiner-h.de>2017-10-03 12:41:11 +0200
commitc4dee290fcaaf1470dc584f0f7e6cb5c944fcb87 (patch)
treecd8ec5dcafa4fb32b7a0249cc3de98e0f28d7c26
parent41dddf863a362d24259b6eeec73bbdd737aecac6 (diff)
bashrc: enforce literal quoting style
ls in coreutils since 8.25 (and 8.28-1 in Debian) is printing filenames quoted and escaped.
-rw-r--r--bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc b/bashrc
index 47857b4..aa437a6 100644
--- a/bashrc
+++ b/bashrc
@@ -28,7 +28,7 @@ fi
# colors for ls and grep
eval "`dircolors -b`"
export LS_COLORS=$LS_COLORS'mh=44;37:' # old coloring of hardlinks
-alias ls='ls --color=auto'
+alias ls='ls --color=auto --quoting-style=literal'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'