SSH 列出目录?

SSH 列出目录?

我 10 分钟前刚刚开始使用 SSH。我输入:

ssh [email protected]
my password

并得到:

Last login: Fri Sep  9 20:31:29 2011 from 190.220.54.6
-bash-3.2$

我想这意味着我连接成功了。但是当我尝试访问我的根目录上的任何目录时,我得到了一个错误。

例如:

/game

返回/game: No such file or directory.顺便说一句我也尝试过/html/game

我做错了什么?/我如何获取目录列表?

答案1

你只是输入目录名称吗?这样 make 就会bash尝试将其作为命令来执行。

用于cd导航目录并ls列出该目录中的文件:

cd /game          # sets the working directory to /game
ls                # lists all files in /game (since the default is the working directory)
ls /html/game     # lists all files in /html/game

答案2

您可以尝试查看目录列表。ssh [email protected] 'ls'

相关内容