在 Linux 命令行中列出文件

在 Linux 命令行中列出文件

我正在使用 fedora 17,其中我使用命令“ls”列出当前目录下的文件,如下所示。

          [user@test test]# ls

有没有办法在不改变当前目录的情况下列出另一个目录中的文件

我想要这样的东西

         [user@test test]# /usr/lib/ then list the files.

答案1

我建议ls --help从以下角度出发:

$ ls --help
Usage: ls [OPTION]... [FILE]...
List information about the FILEs (the current directory by default).
[...]

有关详细信息,请参阅大多数 Linux 命令的手册页。(man ls)。

您的具体问题的答案非常简单,只需使用

ls /usr/lib

答案2

你有没有尝试过

ls /usr/lib

有什么原因导致它不起作用,或者我遗漏了什么?

答案3

使用

/usr/lib 目录

如上所述,您可以开始使用男人作为男人它会给你解释很多 linux 命令

相关内容