Normally I can post from TC64 via links.
Since the tree branch temporarily broke the WiFi connection, I'm now using M$.
What a disaster. The victim is presented with plenty smart-arse ARTY effects, instead of
a sensible hierarchy:
...
TC64
...
Read
Send
Search
...
---------------------- I can't know If/THAT I'm writing from the correct <node>.
The fallen branch has only temporarily disabled TC's WiFi;
but TC's failed `sed` makes my critical scripts useless!
----
tc@box:~$ echo "Zürich" | hexdump -C
00000000 5a c3 bc 72 69 63 68 0a |Z..rich.|
00000008
tc@box:~$ echo "Zürich" | sed 's/\xc3\xbc/ue/' | hexdump -C
00000000 5a c3 bc 72 69 63 68 0a <-fail to replace: c3 bc |Z..rich.|
00000008
----> Test code on nonTC system ?!
tc@box:~$ sudo chroot /mnt/sdc1
\u@\h:\w$ echo "Zürich" | hexdump -C
00000000 5a c3 bc 72 69 63 68 0a |Z..rich.|
--------------------------
\u@\h:\w$ echo "Zürich" | sed 's/\xc3\xbc/ue/' | hexdump -C
00000000 5a 75 65 72 69 63 68 0a |Zuerich.|
====> code confirmed under Debian7: sed translatesHex(c3 bc, 75 65)