Use the inode number to remove files with strange filenames that can't be typed in with keyboard.
http://www.whitehouse.net.cn/blog/article/356.html
Interesting part:
第一步,通过 ls -i命令 ,获取到文件节点号
第二步,使用find命令将文件名传递给rm 命令。e.g:删除节点为 11927557 的乱码文件(或文件夹)可以使用如下命令
find ./ -inum 11927557 -print -exec rm {} -rf \;
注意最后-rf与\;中间有空格。
HxLauncher: Launch Android applications by voice commands