命令1:ls -lh
查看当前文件夹下文件大小,单位为K。(h=human,也就是以人性化的方式来展示文件)
[root@compute2 etc]# ls -lh
total 1.2M
-rw-r--r--. 1 root root 16 Oct 17 22:16 adjtime
-rw-r--r--. 1 root root 1.5K Jun 7 2013 aliases
-rw-r--r--. 1 root root 12K Oct 17 22:17 aliases.db
命令2:ls -a
显示隐藏文件
[root@compute2 ~]# ls
admin-openrc anaconda-ks.cfg
[root@compute2 ~]# ls -a
. admin-openrc .bash_history .bash_profile .cshrc .tcshrc
.. anaconda-ks.cfg .bash_logout .bashrc .ssh .viminfo
命令3:vim -test创建了一个叫test的隐藏文件,需要ls -a才能看到。
命令4:ls -lha
[root@compute2 ~]# ls -hla
可以看到,文件夹本身下面没有一个文件,也需要占用4K的空间。
[root@compute2 home]# ls -lha
total 4.0K
drwxr-xr-x. 2 root root 6 Aug 12 2015 .
dr-xr-xr-x. 17 root root 4.0K Oct 17 22:50 .. 命令5:创建1个新文件
步骤:vim 文件名--->按i进入插入模式--->写完文件之后,按esc键,再按shirt+:,再输入wq保存。
然后用more或cat来查看文件内容。
命令5:mkdir--创建目录
命令6:移动文件mv:
把当前文件或文件夹移动到一个新的位置。当前目录下就没有了。举例1:移动文件
[root@compute2 home]# mv new /root
[root@compute2 home]# ls
[root@compute2 home]# cd /root/
[root@compute2 ~]# ls
admin-openrc anaconda-ks.cfg new
举例2:移动文件夹
[root@compute2 home]# mkdir aaa
[root@compute2 home]# ls
aaa
[root@compute2 home]# mv aaa /root
[root@compute2 home]# ls
[root@compute2 home]# cd /root
[root@compute2 ~]# ls
aaa admin-openrc anaconda-ks.cfg new