如何显示(或隐藏)隐藏文件


16

我想将类路径添加到我的JDK中。在搜索方法时,我注意到每个人都.profile使用终端打开文件。但是,当我想使用文本编辑器打开和编辑它时,在主文件夹中看不到该文件。

有人可以告诉我这是为什么。还有,如果可能的话,我如何.profile以GUI方式访问主文件夹。


1
在鹦鹉螺中按Ctl + H。
RobotHumans 2012年

打开终端,然后尝试cat ~/.profile。检查输出,即您的.profile。
nickanor 2012年

Answers:


20

显示隐藏文件或文件夹的GUI方法

隐藏的文件和文件夹的名称以开头(点字符)。要切换显示/隐藏隐藏的文件或文件夹,请使用键盘快捷键Ctrl+ H


11

在Linux和Unix系统中,以.(点)开头的文件是隐藏文件。要使用ls命令查看它们,请在您的ls处添加-a-A

ls -a /path/to/dir

要么

ls -A ~

从手册man ls

   -a, --all
          do not ignore entries starting with .

   -A, --almost-all
          do not list implied . and ..

另外,以a结尾的注释文件~也可能被隐藏。
2014年

6

之所以不能“看到” .profile”,是因为ls命令不显示. 以“。” 开头的文件和目录名称-这是Unix中“隐藏”文件的原始设备。

您仍然可以通过键入emacs .profile (或任何想要使用的编辑器)来编辑.profile 。

而且,您可以通过键入“查看”您的所有文件,ls -al 从而要求为所有指定的目录或文件参数提供“长格式”(信息更多)输出。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.