Closed. This question is off-topic. It is not currently accepting answers. Learn more。
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
问这个问题很傻,但似乎无法将目录更改为Windows XP IE7
。下面是我的尝试。
[root@localhost VirtualBox VMs]# ls -l
total 8
drwxr-xr-x 4 justMe justMe 4096 Dec 19 07:20 Windows XP IE6
drwxr-xr-x 4 justMe justMe 4096 Dec 19 06:48 Windows XP IE7
[root@localhost VirtualBox VMs]# cd Windows XP IE6
-bash: cd: Windows: No such file or directory
[root@localhost VirtualBox VMs]# cd Win*
[root@localhost Windows XP IE6]# ls -l
total 3558896
drwx------ 2 justMe justMe 4096 Dec 19 07:20 Logs
drwx------ 2 justMe justMe 4096 Dec 19 07:20 Snapshots
-rw------- 1 justMe justMe 18529 Dec 19 07:20 Windows XP IE6.vbox
-rw------- 1 justMe justMe 18586 Dec 19 07:20 Windows XP IE6.vbox-prev
-rw------- 1 justMe justMe 3640700928 Jul 24 12:03 Windows XP IE6.vdi
[root@localhost Windows XP IE6]#
最佳答案
在bash中,必须quote命令参数中包含空格。
这就是为什么避免这样的空白是一个好主意。
你需要:
$ cd "Windows XP IE6"
09-27 21:06