From: Mike Frysinger Date: Wed, 3 Feb 2016 18:38:49 +0000 (-0500) Subject: profile.d: force `ls` output to non-quoting by default X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=fe1ac149fe693931da292642c5ffabee08080890;p=home.git profile.d: force `ls` output to non-quoting by default --- diff --git a/.profile.d/base.sh b/.profile.d/base.sh index 28001f5..71f254a 100644 --- a/.profile.d/base.sh +++ b/.profile.d/base.sh @@ -3,3 +3,6 @@ export PAGER=/usr/bin/less if [ -z "${LESSOPEN}" ] ; then export LESSOPEN='|lesspipe %s' fi + +# Turn off automatic quoting w/ls output. +export QUOTING_STYLE='literal'