Hacker News new | ask | show | jobs
GNU Coreutils Gotchas (pixelbeat.org)
24 points by jake-low 2444 days ago
1 comments

They miss an important bit: strings. coreutils cannot deal with unicode strings, just ASCIIZ. Nowadays one should not assume strings are ASCII or Latin1 only. Searching must include normalization, -i must use proper case mappings, sort ordering need to be observed, ... My fork on GitHub adds unicode support and -g progress-bar for mv and cp.