I'm trying to convert all my music files to more unix-friendly file names.  So far it's been pretty simple using a couple of 'tr' commands to replace spaces with underscores, change upper case to lower, and remove unwanted characters.  But my problem comes when I'm trying to deal with accented characters.
<br><br>The man page states:<br><br><pre>     Remove diacritical marks from all accented variants of the letter `e':<br><br>           tr &quot;[=e=]&quot; &quot;e&quot;</pre>So I tried it, but it doesn't seem to do anything.&nbsp; In fact the only place the &quot;correct&quot; character is displayed is the Finder.&nbsp; In Terminal, the output of an ls command shows two question marks in the place of the accented character.&nbsp; And in the output of a find command two other strange characters are displayed in it's place.&nbsp; So I'm not exactly sure how to deal with these.&nbsp; Does anybody know?
<br><br>Thanks,<br><br>matt.<br>