我开始浏览Zed Shaw的命令行速成课程,我正在更改目录课程中。当我输入cd../../ pwd
时会出现错误:
the term cd is not recognized as the name of a cmdlet, function, script file or operable program
我不确定这意味着什么以及在这种背景下。我知道我输入了一些它无法识别的东西,但似乎这是它应该识别的东西。我目前的理论是它正在读入一个空白区域,但这不是错误信息所读取的内容。所以我有点失落。
感谢。
答案 0 :(得分:1)
您是否遗漏了cd
和../../
之间的空格?
同样pwd
是一个单独的命令,应在运行cd
后单独输入
cd ../../ # this changes the current working directory to its parent's parent (goes up two levels)
pwd # this displays the current working directory (the original directory's parent's parent)
例如:
C:\users\you\dir1\dir2\dir3> cd ../../
C:\users\you\dir1> pwd
C:\users\you\dir1
C:\users\you\dir1>