本文介绍了bash:cd:参数太多的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我需要转到名为例外处理"的目录,然后我写(cd异常处理),但是它给出了太多的错误信息
if i need to go to my directory named as"exception handling" then i write (cd exception handling) but it gives error too many arguments
推荐答案
使用引号:
cd "new folder"
或逃脱空格:
cd new\ folder
(也就是说,cd
不会打开文件,而是会更改工作目录.)
(That being said, cd
does not open a file but changes the working directory.)
这篇关于bash:cd:参数太多的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!