From 4d8ce6b1cb28a960c4889ae82d47dc617efe2e2e Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 13 May 2009 16:49:43 +0200 Subject: [PATCH] Fix ls to show Korean characters and accented characters by default By including the option '--show-control-chars' in the alias for 'ls', Korean and accented characters will be shown correctly. This fixes msysGit issue 188. Signed-off-by: Johannes Schindelin --- etc/bash_profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/etc/bash_profile b/etc/bash_profile index d0646789e6..77b9c8dca5 100644 --- a/etc/bash_profile +++ b/etc/bash_profile @@ -2,6 +2,7 @@ # creates his/her own .bashrc/.bash_profile alias less='less -r' -alias ls='ls -F --color' +# --show-control-chars: help showing Korean or accented characters +alias ls='ls -F --color --show-control-chars' alias ll='ls -l' -- 2.11.4.GIT