(一)、ls命令:列出文件和目录
1、--color=auto 来开启颜色标注:ls --color=auto
2、--color=none 来关闭颜色标注:ls --color=none
(二)、ls命令常用的一些参数
1、-a
显示所有文件和目录,包括隐藏的
Linux中以.开头的文件是隐藏文件,但不包含.
和..
.
表示当前目录
..
表示上层目录
2、-A
作用基本和-a
一致,唯一不同的是-A不列出.
,..
3、-l
列出一个显示文件和目录的详细信息的列表
[aiguo@localhost ~]$ ls -l
total 0
文件的权限 链接的数目 当前的所属用户 所属群组 文件大小(Oct === type) 文件名称
drwxr-xr-x. 2 aiguo aiguo 6 Oct 1 23:39 Desktop
drwxr-xr-x. 2 aiguo aiguo 6 Oct 1 23:39 Documents
drwxr-xr-x. 2 aiguo aiguo 6 Oct 1 23:39 Downloads
drwxr-xr-x. 2 aiguo aiguo 6 Oct 1 23:39 Music
drwxr-xr-x. 2 aiguo aiguo 6 Oct 1 23:39 Pictures
drwxr-xr-x. 2 aiguo aiguo 6 Oct 1 23:39 Public
drwxrwx---. 1 root vboxsf 224 Sep 30 23:12 share
drwxr-xr-x. 2 aiguo aiguo 6 Oct 1 23:39 Templates
drwxr-xr-x. 2 aiguo aiguo 6 Oct 1 23:39 Videos
3、-h
以Ko,Mo,Go的形式显示文件大小
仅用ls -l,列出的文件详细信息中,文件大小是以字节为单位的
参数-h,h是human readable的缩写,表示“适合人类阅读的”
4、-t
按照文件最近一次修改时间排序
5、ls的常用参数合并在一起使用,效果是叠加的: ls -lath
(三)、cd命令 切换目录
回到家目录
cd ~
或者 cd
网友评论