git 说目录存在并且不为空,但是 Cd 目录返回未找到命令

git 说目录存在并且不为空,但是 Cd 目录返回未找到命令

我在 raspberry 上安装 wifiphisher 时遇到问题

root@raspberrypi:/home/pi# git clone
https://github.com/wifiphisher/wifiphisher.git fatal: destination path
'wifiphisher' already exists and is not an empty directory.
root@raspberrypi:/home/pi# Cd wifiphisher bash: Cd: command not found

我是 raspberry 和 wifiphisher 的新手。我有 RaspberryPi 3

答案1

首先,它说 wifiphisher 不是一个空目录,因此拒绝将数据复制到其中。

下次运行Cd wifiphisher,您会得到错误Cd: command not found

Unix(和 Linux)区分大小写。更改目录的命令是cd,而不是Cd

因此,cd wifiphisher应该可以工作。

相关内容