This is a Russian transliteration table:
If you have python installed, you can use this script:
It seems to do a pretty good job and also you can change it to your needs. It did not work out of the box for me, I had to remove the encode
call from following two lines (line numbers given in front):
117 print fpath.encode('utf-8')
136 print 'Copying %s to %s' % (fpath.encode('utf-8'), new_fpath)
i.e. change to:
117 print fpath
136 print 'Copying %s to %s' % (fpath, new_fpath)
but then worked fine, example (assuming you put the script from the above with the changes given to the file in the same folder called transliterate.py
and then chmod u+x transliterate.py
to make it executable):
$ mkdir a
$ touch a/сказать
$ ./transliterate.py a
a/сказать
Copying a/сказать to a/skazat'
Hope this helps.