Espace insécable, tabulation, blancs masqués par un carriage return, etc.
$ echo -e " \t\rthe\xA0cake is a lie :)" > /tmp/cake
$ cat /tmp/cake
the�cake is a lie :)
$ cat -A /tmp/cake
^I^MtheM- cake is a lie :)$
$ vi /tmp/cake
^Mthe cake is a lie :)
$ od -c /tmp/cake
0000000\t\r t h e 240 c a k e i s a
0000020 l i e : )\n0000030
$ hd /tmp/cake
000000002009 0d 746865 a0 6361 6b 652069732061| ..the.cake is a|0000001020 6c 696520 3a 29 0a | lie :).|00000018
[^] # Re: ou alors...
Posté par Benoît Sibaud (site web personnel) . En réponse au message Besoin d'aide pour la commande tr. Évalué à 4.
Espace insécable, tabulation, blancs masqués par un carriage return, etc.