概述
A Vue project is structured similarly to a lot of modern node-based apps and contains the following:
A package.json fileA node_modules folder in the root of your projectVarious other configuration files are usually contained at the root level, such …
目录 1.查看时间
2.修改时间和日期
3.定时任务
4.定时任务格式 5.查看定时任务的进程 1.查看时间 具体时间
date 年月日
date %F 时分秒
date %T 年月日 时分秒
date %F\ %T
2.修改时间和日期
手动修改时间 date -s 需要改的时间
date -s 12:30;00
手动…