文件操作:
# 查看目录中的文件
[root@localhost ~]# ls
# 查看目录中的文件
[root@localhost ~]# ls -F
# 显示文件和目录的详细资料
[root@localhost ~]# ls -l
# 显示隐藏文件
[root@localhost ~]# ls -a
# 显示包含数字的文件名和目录名
[root@localhost ~]# ls [0-9]
# 删除go.tar文件
[root@localhost ~]# rm go.tar
# 查找文件名为mt.cgi的文件
[root@localhost ~]# find mt.cgi
# 查看磁盘剩余空间
[root@localhost ~]# df ?h
# 查找xxx文件
[root@localhost ~]# find / -name xxx -print