Essayez les commandes suivantes depuis le terminal :
touch á.txt
$ ls
á.txt
find . -name á.txt -print
n'imprime rien.
Mes paramètres de Terminal.app sont utf8 - voir ici :
La question : Comment parvenir à travailler de manière transparente (Finder + ligne de commande) avec des noms de fichiers UNICODE ?
Je comprends que, derrière la scène, il y a la normalisation différente de l'unicode :
$ echo á.txt | od -bc
0000000 303 241 056 164 170 164 012
á ** . t x t \n
et quand
$touch á.txt
$ ls *.txt
á.txt
$ ls *.txt | od -bc
0000000 141 314 201 056 164 170 164 012
a ** . t x t \n
mais QUELLE EST LA SOLUTION ?