我在shell上输入output
时有两个ls -l
个文件夹。
MyBookLive:~/download/# ls -l
drwxrwxrw- 4 root root 65536 2013-12-20 12:33 output
drwxrwxrw- 3 root root 65536 2013-12-20 12:33 output
我确信文件名中没有空格,因为当我按下tab
键时,它会显示:
MyBookLive:~/download/# ls -l output
output/ output/
为什么呢?感谢。
答案 0 :(得分:1)
第二个“输出”在最后一个“t”之后有字符129。
在浏览器的控制台中尝试此操作,复制问题中的“输出/输出/”字符串。
"output/ output/".split('').forEach(function(x){console.log(x, x.charCodeAt(0))})