python 处理时间 import time import re now = time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()) timeobj = re.match(r'(.*)-(.*)-(.*) (.*):(.*):(.*)', now) if timeobj is not None: timestamp = time.mktime(time.strptime(now, "%Y-%m-%d %H:%M:%S")
ls 显示当前目录下的所有文件或者文件夹,但不包括 . 和 .. ls -a 显示当前目录下的所有文件或者文件夹 ls -l 以list方式显示当前文件夹下的文件或者文件夹,显示文件权限, 文件大小,文件修改时间,文件名等信息 ls -l filename 显示指定文件或者文件夹的详细信息 man ls 查看所有关于ls的命令
ls list directory contents 显示目录内容 [语法]: ls [选项] [参数] [功能介绍] ls指令用来显示目录列表,在Linux系统中有着较高的使用率.ls指令的输出信息可以进行颜色加亮显示,以区分不同类型的文件. [选项说明] -a, --all do not ignore entries starting with . 显示当前目录下包裹隐藏文件在内的所有文件列表 -l use a long listing format 输出长格式列表 -t sort by m