When listing directories in terminal (using the ls command, for example) some file names might not be displayed correctly. This is often because there are characters in the file's name which cannot be displayed in the command line.
The file names can be shown with their character codes using the "od" command. Just pipe the output of ls to it like this...
ls -1 | od -c
Note: The end of each filename/line is shown as \n
My latest blog post: Think for Yourself: In the end, everything is just an opinion. Be skeptical, and think for yourself! (posted 2026-04-25).