[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#12249: not latin letters
From: |
Pádraig Brady |
Subject: |
bug#12249: not latin letters |
Date: |
Tue, 21 Aug 2012 18:05:32 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/20110816 Thunderbird/6.0 |
On 08/21/2012 01:37 PM, gymka wrote:
> command "ls" not sees folders with not latin letters(in my case with
> Lithuanian). eg. there is folder "folderą" command "ls -d" don't sees
> it, command "ls" sees it.
I'm guessing there is not a bug in ls, and instead
a mismatch between input and output char encodings?
Does this output as expected?
ls -d folder*
This is a good way to debug what characters really are:
$ ls -1d folder* | od -Ax -tx1z -v
000000 66 6f 6c 64 65 72 c4 85 0a >folder...<
cheers,
Pádraig.