Hacker News new | ask | show | jobs
by social_monad 4662 days ago
look at: man utf8 man syscalls

... and the best hint imo to process malformed filenames per 'find -print0' is:

find ... -print0 | { while read -d $'\0' fil ... # use variable fil }

Regards