当前位置: 首页 > news >正文

教育网站建设的策划设计师去哪个网站找工作

教育网站建设的策划,设计师去哪个网站找工作,网站名称如何设置,网站建设平台价格引言简单介绍一些Linux的基本指令#xff0c;快速上手Linux操作系统。一、ls指令语法#xff1a;ls [选项] [目录或文件]功能#xff1a;#xff1a;对于目录#xff0c;该命令列出该目录下的所有子目录与文件。对于文件件#xff0c;将列出文件名以及其他信息常用选项快速上手Linux操作系统。 一、ls指令语法ls [选项] [目录或文件]功能对于目录该命令列出该目录下的所有子目录与文件。               对于文件件将列出文件名以及其他信息常用选项-a 列出目录下的所以文件包含以 . 开头的隐含文件-l 列出文件的详细信息-d 将目录像文件一样显示而不是显示其下的文件。ls -d [指定目录]等等等等后面遇到了再详细介绍。 [roothcss-ecs-f571 ~]# ls learn01 [roothcss-ecs-f571 ~]# ls -a . .. .bash_history .bash_logout .bash_profile .bashrc .cache .cshrc .history learn01 .pki .ssh .tcshrc [roothcss-ecs-f571 ~]# ls -l total 4 drwxr-xr-x 2 root root 4096 Jul 29 22:12 learn01 [roothcss-ecs-f571 ~]# ls -a -l total 48 dr-xr-x---. 6 root root 4096 Jul 29 22:12 . dr-xr-xr-x. 19 root root 4096 May 25 23:07 .. -rw-r--r-- 1 root root 475 Jul 29 22:12 .bash_history -rw-r--r--. 1 root root 18 Dec 29 2013 .bash_logout -rw-r--r--. 1 root root 176 Dec 29 2013 .bash_profile -rw-r--r--. 1 root root 176 Dec 29 2013 .bashrc drwx------ 3 root root 4096 Jul 26 2024 .cache -rw-r--r--. 1 root root 100 Dec 29 2013 .cshrc -rw------- 1 root root 0 Jul 26 2024 .history drwxr-xr-x 2 root root 4096 Jul 29 22:12 learn01 drwxr----- 3 root root 4096 Jul 26 2024 .pki drwx------ 2 root root 4096 May 25 23:07 .ssh -rw-r--r--. 1 root root 129 Dec 29 2013 .tcshrc 二、pwd命令语法pwd功能显示用户当前所在的目录常用选项无 [roothcss-ecs-f571 ~]# pwd /rootLinux理论知识路径的认识• Linux系统中磁盘上的文件和目录被组成一棵目录树每个节点都是目录或文件 • 其中普通文件⼀定是目录树的叶子节点 • 目录可能是叶子(空目录),也可能是路上节点 • 理解路径存在的意义:树状组织方式保证快速定位查找到指定的文件而定位文件就需要具有唯⼀性的方案来进行定位文件。其中任何⼀个节点都只有⼀个父节点所以从根目录开始定位指定文件路径具有唯⼀性 • 绝对路径⼀般从/开始不依赖其他⽬录的定位文件的方式 • 相对路径相对于当前用户所处⽬录定位⽂件的路径方式 • 绝对路径⼀般不会随着用户的路径变化而丧失唯一性一般在特定服务的配置文件中经常  被使用 • 相对路径因为它的便捷性⼀般在命令行中使用较多 三、cd指令语法cd 目录名功能改变工作目录。将当前工作目录改变到指定的目录下常用选项cd ..  返回上级目录cd ~ 快速进入自己的家目录cd / 进入/目录cd - 退回到上一次的目录中cd 跟目录       [roothcss-ecs-f571 learn01]# cd ~ [roothcss-ecs-f571 ~]# pwd /root [roothcss-ecs-f571 ~]# cd / [roothcss-ecs-f571 /]# pwd / [roothcss-ecs-f571 /]# cd /root/learn01 [roothcss-ecs-f571 learn01]# pwd /root/learn01 [roothcss-ecs-f571 learn01]# cd - / [roothcss-ecs-f571 /]# pwd / [roothcss-ecs-f571 /]# cd ~ [roothcss-ecs-f571 ~]# pwd /root [roothcss-ecs-f571 ~]# 四、touch指令语法touch [选项]..[文件]功能touch命令参数可更改文档或目录的日期时间包括存取时间和更改时间或者新建⼀个不存在的文件。常用选项-a:change only the access time-c:change only the modification time [roothcss-ecs-f571 ~]# ls learn01 [roothcss-ecs-f571 ~]# cd learn01 [roothcss-ecs-f571 learn01]# touch my.txt [roothcss-ecs-f571 learn01]# ls my.txt [roothcss-ecs-f571 learn01]# ll total 0 -rw-r--r-- 1 root root 0 Jul 29 23:28 my.txt [roothcss-ecs-f571 learn01]# 五、mkdir指令语法mkdir [选项] dirname功能在当前目录下创建一个名为“dirname”的目录常用选项-p/--parents: 可以是一个路径名称。此时若路径中的某些目录尚不存在,加上此选项后,系统将自动建好那些尚不存在的目录即一次可以建立多个目录 [roothcss-ecs-f571 learn01]# ll total 8 drwxr-xr-x 2 root root 4096 Jul 29 23:40 dir1 drwxr-xr-x 3 root root 4096 Jul 29 23:41 dir2 -rw-r--r-- 1 root root 0 Jul 29 23:28 my.txt [roothcss-ecs-f571 learn01]# mkdir dir3 [roothcss-ecs-f571 learn01]# ll total 12 drwxr-xr-x 2 root root 4096 Jul 29 23:40 dir1 drwxr-xr-x 3 root root 4096 Jul 29 23:41 dir2 drwxr-xr-x 2 root root 4096 Jul 29 23:42 dir3 -rw-r--r-- 1 root root 0 Jul 29 23:28 my.txt [roothcss-ecs-f571 learn01]# mkdir -p dir4/dir5/dir6 [roothcss-ecs-f571 learn01]# ll total 16 drwxr-xr-x 2 root root 4096 Jul 29 23:40 dir1 drwxr-xr-x 3 root root 4096 Jul 29 23:41 dir2 drwxr-xr-x 2 root root 4096 Jul 29 23:42 dir3 drwxr-xr-x 3 root root 4096 Jul 29 23:42 dir4 -rw-r--r-- 1 root root 0 Jul 29 23:28 my.txt [roothcss-ecs-f571 learn01]# tree dir4 dir4 └── dir5└── dir62 directories, 0 files [roothcss-ecs-f571 learn01]# 六、rmdir指令语法rmdir [-p] [dirname]适用对象具有当前目录操作权限的所有使用者功能删除空目录 drwxr-xr-x 6 root root 4096 Jul 29 23:42 learn01 [roothcss-ecs-f571 ~]# tree learn01 learn01 ├── dir1 ├── dir2 │   └── dir3 │   └── dir4 │   └── dir5 ├── dir3 ├── dir4 │   └── dir5 │   └── dir6 └── my.txt [roothcss-ecs-f571 learn01]# ll total 16 drwxr-xr-x 2 root root 4096 Jul 29 23:40 dir1 drwxr-xr-x 3 root root 4096 Jul 29 23:41 dir2 drwxr-xr-x 2 root root 4096 Jul 29 23:42 dir3 drwxr-xr-x 3 root root 4096 Jul 29 23:42 dir4 -rw-r--r-- 1 root root 0 Jul 29 23:28 my.txt [roothcss-ecs-f571 learn01]# rmdir dir1 # 直接删除目录dir1 [roothcss-ecs-f571 learn01]# ll total 12 drwxr-xr-x 3 root root 4096 Jul 29 23:41 dir2 drwxr-xr-x 2 root root 4096 Jul 29 23:42 dir3 drwxr-xr-x 3 root root 4096 Jul 29 23:42 dir4 -rw-r--r-- 1 root root 0 Jul 29 23:28 my.txt [roothcss-ecs-f571 learn01]# rmidr dir2 -bash: rmidr: command not found [roothcss-ecs-f571 learn01]# ll total 12 drwxr-xr-x 3 root root 4096 Jul 29 23:41 dir2 drwxr-xr-x 2 root root 4096 Jul 29 23:42 dir3 drwxr-xr-x 3 root root 4096 Jul 29 23:42 dir4 -rw-r--r-- 1 root root 0 Jul 29 23:28 my.txt # 指定路径中有不为空的路径便⽆法删除 [roothcss-ecs-f571 learn01]# rmdir -p dir2/dir3/dir4 rmdir: failed to remove ‘dir2/dir3/dir4’: Directory not empty [roothcss-ecs-f571 learn01]# rmdir -p dir2/dir3/dir4/dir5 [roothcss-ecs-f571 learn01]# ll total 8 drwxr-xr-x 2 root root 4096 Jul 29 23:42 dir3 drwxr-xr-x 3 root root 4096 Jul 29 23:42 dir4 -rw-r--r-- 1 root root 0 Jul 29 23:28 my.txt 七、rm指令语法 rm [-f-i-r-v] [dirName/dir]适用对象所有使用者功能删除文件或目录常用选项-f 即使文件属性为只读即写保护亦直接删除-i 删除前逐一询问确认-r 删除目录及其下所有文件 [roothcss-ecs-f571 learn01]# pwd /root/learn01 [roothcss-ecs-f571 learn01]# tree . ├── dir3 ├── dir4 │   └── dir5 │   └── dir6 ├── my.txt └── test.txt4 directories, 2 files [roothcss-ecs-f571 learn01]# rm dir3 rm: cannot remove ‘dir3’: Is a directory [roothcss-ecs-f571 learn01]# rm -f dir3 rm: cannot remove ‘dir3’: Is a directory [roothcss-ecs-f571 learn01]# rm -r dir3 rm: remove directory ‘dir3’? y[roothcss-ecs-f571 learn01]# rm -r -i dir4 rm: descend into directory ‘dir4’? y rm: descend into directory ‘dir4/dir5’? y rm: remove directory ‘dir4/dir5/dir6’? y rm: remove directory ‘dir4/dir5’? y rm: remove directory ‘dir4’? y [roothcss-ecs-f571 learn01]# tree . ├── my.txt └── test.txt0 directories, 2 files [roothcss-ecs-f571 learn01]# rm my.txt rm: remove regular empty file ‘my.txt’? y [roothcss-ecs-f571 learn01]# tree . └── test.txt0 directories, 1 file 八、man指令Linux的命令有很多参数我们不可能全记住可以通过查看联机手册获取帮助语法man [选项] 命令常用选项-k 根据关键字搜索联机帮助num 只在第num章节查找-a 将所有章节都显示出来man手册分为9章(不同系统可能会有差别)1是普通的命令 2是系统调用,如open,write之类的(通过这个至少可以很方便的查到调用这个函数需要加什么头文件)3是库函数,如printf,fread4是特殊文件,也就是/dev下的各种设备文件4略5是指文件的格式,比如passwd,就会说明这个文件中各个字段的含义6是给游戏留的,由各个游戏⾃⼰定义7是附件还有⼀些变量,比如像environ这种全局变量在这里就有说明8是系统管理用的命令,这些命令只能由root使用,如ifconfig9略按q退出手册九、cp指令语法cp [选项] 源文件或目录 目标文件或目录功能复制文件或目录解释cp指令用于复制文件或目录如同时指定两个以上的文件或目录且最后的目的地地是⼀个已经存在的⽬录则它会把前面指定的所有文件或目录复制到此目录中常用选项-f或--force强行复制文件或目录不论目的文件或目录是否已经存在-i或--interactive 覆盖文件之前先询问用户-r递归处理将指定目录下的文件与子目录⼀并处理。若源文件或目录的形态不属于目录或符号链接则⼀律视为普通文件处理 # cp普通文件 [roothcss-ecs-f571 learn01]# echo 你好世界test.txt [roothcss-ecs-f571 learn01]# cat test.txt 你好世界 [roothcss-ecs-f571 learn01]# cp test.txt test2.txt [roothcss-ecs-f571 learn01]# ll total 8 -rw-r--r-- 1 root root 16 Jul 30 15:29 test2.txt -rw-r--r-- 1 root root 16 Jul 30 15:28 test.txt [roothcss-ecs-f571 learn01]# cat test2.txt 你好世界# 将多个文件拷贝到指定路径下 [roothcss-ecs-f571 learn01]# mkdir dir1 [roothcss-ecs-f571 learn01]# cp *.txt dir1 [roothcss-ecs-f571 learn01]# tree . ├── dir1 │   ├── test2.txt │   └── test.txt ├── test2.txt └── test.txt1 directory, 4 files [roothcss-ecs-f571 learn01]# # cp目标文件存在直接覆盖 [roothcss-ecs-f571 learn01]# echo hello word test.txt [roothcss-ecs-f571 learn01]# cat test.txt hello word [roothcss-ecs-f571 learn01]# cp test.txt test2.txt cp: overwrite ‘test2.txt’? y [roothcss-ecs-f571 learn01]# cat test2.txt hello word [roothcss-ecs-f571 learn01]# # 递归强制拷贝整个目录 [roothcss-ecs-f571 learn01]# cp -rf dir1 dir2 [roothcss-ecs-f571 learn01]# tree . ├── dir1 │   ├── test2.txt │   └── test.txt ├── dir2 │   ├── test2.txt │   └── test.txt ├── test2.txt └── test.txt2 directories, 6 files [roothcss-ecs-f571 learn01]# 十、mv指令        mv命令是move的缩写可以⽤来移动文件或者将文件改名move(rename)files,经常⽤来备份文件或者目录相当于剪切功能语法: mv [ 选项 ] 源文件或目录 目标文件或目录功能视mv命令中第⼆个参数类型的不同是目标文件还是目标目录mv命令将文件重命名或将其移至⼀个新的目录中。常用选项-fforce强制的意思如果目标文件已经存在不会询问而直接覆盖 -i若目标文件(destination)已经存在时就会询问是否覆盖 # 更改名称 [roothcss-ecs-f571 learn01]# tree . ├── dir1 │   ├── test2.txt │   └── test.txt ├── dir2 │   ├── test2.txt │   └── test.txt ├── dir3 ├── test2.txt └── test.txt3 directories, 6 files [roothcss-ecs-f571 learn01]# mv test.txt test1.txt [roothcss-ecs-f571 learn01]# tree . ├── dir1 │   ├── test2.txt │   └── test.txt ├── dir2 │   ├── test2.txt │   └── test.txt ├── dir3 ├── test1.txt └── test2.txt3 directories, 6 files# 如果当前路径存在同名⽂件改名即覆盖 [roothcss-ecs-f571 learn01]# touch test3.txt [roothcss-ecs-f571 learn01]# mv test3.txt test2.txt mv: overwrite ‘test2.txt’? y [roothcss-ecs-f571 learn01]# tree . ├── dir1 │   ├── test2.txt │   └── test.txt ├── dir2 │   ├── test2.txt │   └── test.txt ├── dir3 ├── test1.txt └── test2.txt3 directories, 6 files [roothcss-ecs-f571 learn01]# # mv整个目录 [roothcss-ecs-f571 learn01]# tree . ├── dir1 │   ├── test2.txt │   └── test.txt ├── dir2 │   ├── test2.txt │   └── test.txt ├── dir3 ├── test1.txt └── test2.txt3 directories, 6 files [roothcss-ecs-f571 learn01]# mv dir3 dir1 [roothcss-ecs-f571 learn01]# tree . ├── dir1 │   ├── dir3 │   ├── test2.txt │   └── test.txt ├── dir2 │   ├── test2.txt │   └── test.txt ├── test1.txt └── test2.txt3 directories, 6 files [roothcss-ecs-f571 learn01]# [roothcss-ecs-f571 learn01]# mv dir1 .. [roothcss-ecs-f571 learn01]# cd .. [roothcss-ecs-f571 ~]# tree . ├── dir1 │   ├── dir3 │   ├── test2.txt │   └── test.txt └── learn01├── dir2│   ├── test2.txt│   └── test.txt├── test1.txt└── test2.txt4 directories, 6 files十一、cat指令语法cat [选项] [文件]功能查看目标文件的内容常用选项-b对非空输出行编号-n对输出的所有行编号-s不输出多行空行 # 命令⾏构建多⾏⽂本 [roothcss-ecs-f571 ~]# cnt0; while [ $cnt -le 20 ]; do echo hello word;let cnt; done temp.txt [roothcss-ecs-f571 ~]# cat temp.txt hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word# cat 输出携带行号 [roothcss-ecs-f571 ~]# cat -b temp.txt1 hello word2 hello word3 hello word4 hello word5 hello word6 hello word7 hello word8 hello word9 hello word10 hello word11 hello word12 hello word13 hello word14 hello word15 hello word16 hello word17 hello word18 hello word19 hello word20 hello word21 hello word# 修改temp.txt使其携带多行空行 [roothcss-ecs-f571 ~]# vim temp.txt# -b 对⾮空输出⾏编号 [roothcss-ecs-f571 ~]# cat -b temp.txt1 hello word2 hello word3 hello word4 hello word5 hello word6 hello word7 hello word8 hello word9 hello word10 hello word11 hello word12 hello word13 hello word14 hello word15 hello word16 hello word17 hello word18 hello word19 hello word20 hello word21 hello word # -n 对输出的所有⾏编号 [roothcss-ecs-f571 ~]# cat -n temp.txt1 hello word2 hello word3 hello word4 hello word5 hello word6 hello word7 hello word8 hello word9 hello word10 hello word11 hello word12 hello word13 hello word14 hello word15 hello word16 hello word17 hello word18 hello word19 20 21 22 23 hello word24 hello word25 26 27 hello word # -s 不输出多⾏空⾏多⾏空⾏压缩成为⼀⾏ [roothcss-ecs-f571 ~]# cat -s temp.txt hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word hello wordhello word hello wordhello word [roothcss-ecs-f571 ~]#十二、more指令语法more [选项]功能more命令功能类似cat常用选项-n指定输出行数q退出more # 命令行输出2000行hello word [roothcss-ecs-f571 ~]# cnt0; while [ $cnt -le 2000 ]; do echo hello word;let cnt; done temp.txt # -n 指定输出的行数 [roothcss-ecs-f571 ~]# more -10 temp.txt hello word hello word hello word hello word hello word hello word hello word hello word hello word hello word --More--(0%) 十三、less指令语法less [参数] 文件功能less与more类似但使用less可以随意浏览文件而more仅能向前移动却不能向后移动而且less在查看之前不会加载整个文件。 less⼯具也是对文件或其它输出进行分页显示的⼯具应该说是linux正统查看文件内容的工具 功能极其强⼤ less的用法比起more更加的有弹性在more的时候我们并没有办法向前面翻只能往后面看若使⽤了less就可以使用[pageup][pagedown]等按键的功能来往前往后翻看文件更 容易用来查看⼀个文件的内容 除此之外在less里头可以拥有更多的搜索功能不止可以向下搜也可以向上搜。 选项 -i 忽略搜索时的大小写-N 显示每行的行号 /字符串向下搜索“字符串”的功能 ?字符串向上搜索“字符串”的功能 n重复前一个搜索与/或?有关 N反向重复前⼀个搜索与/或?有关 q:quit [roothcss-ecs-f571 ~]# less -N temp.txt 1 hello 02 hello 13 hello 24 hello 35 hello 46 hello 57 hello 68 hello 79 hello 810 hello 911 hello 1012 hello 1113 hello 1214 hello 1315 hello 1416 hello 1517 hello 1618 hello 1719 hello 1820 hello 1921 hello 2022 hello 2123 hello 2224 hello 2325 hello 2426 hello 2527 hello 2628 hello 2729 hello 2830 hello 2931 hello 3032 hello 31 ... 十四、head指令和tail指令        head与tail就像它的名字⼀样的浅显易懂它是用来显示开头或结尾某个数量的文字区块head用来显示档案的开头至标准输出中而tail就是看档案的结尾。1.head指令语法head [参数] [文件]功能head用来显示档案的开头至标准输出中默认head命令打印其相应⽂件的开头10行。选项 -n行数显示的行数 [roothcss-ecs-f571 ~]# head temp.txt hello 0 hello 1 hello 2 hello 3 hello 4 hello 5 hello 6 hello 7 hello 8 hello 9[roothcss-ecs-f571 ~]# head -5 temp.txt hello 0 hello 1 hello 2 hello 3 hello 4 [roothcss-ecs-f571 ~]# 2.tail指令        tail 命令从指定点开始将文件写到标准输出.使用tail命令的-f选项可以方便的查阅正在改变的日志文件,tail-f filename会把filename里最尾部的内容显示在屏幕上,并且不断刷新,使你看到最新的文件内容。语法tail 必要参数 [文件]功能用于显示指定文件末尾内容不指定文件时作为输入信息进行处理。常用查看日志文件。选项 -f 循环读取-n行数 显示行数 [roothcss-ecs-f571 ~]# tail temp.txt hello 1991 hello 1992 hello 1993 hello 1994 hello 1995 hello 1996 hello 1997 hello 1998 hello 1999 hello 2000 [roothcss-ecs-f571 ~]# [roothcss-ecs-f571 ~]# tail -4 temp.txt hello 1997 hello 1998 hello 1999 hello 2000 [roothcss-ecs-f571 ~]# 用管道对数据进行操作显示文件[250, 300] [roothcss-ecs-f571 ~]# head -250 temp.txt | tail -50 hello 200 hello 201 hello 202 hello 203 hello 204 hello 205 hello 206 hello 207 hello 208 hello 209 hello 210 hello 211 hello 212 hello 213 hello 214 hello 215 hello 216 hello 217 hello 218 hello 219 hello 220 hello 221 hello 222 hello 223 hello 224 hello 225 hello 226 hello 227 hello 228 hello 229 hello 230 hello 231 hello 232 hello 233 hello 234 hello 235 hello 236 hello 237 hello 238 hello 239 hello 240 hello 241 hello 242 hello 243 hello 244 hello 245 hello 246 hello 247 hello 248 hello 249 十五、data指令1.在显示方面可以设定欲显示的格式格式设定为⼀个加号后接数个标记其中常用的标记列表如下%H:小时(00..23) %M:分钟(00..59) %S:秒(00..61) %X:相当于%H:%M:%S %d:日(01..31) %m:月份(01..12) %Y:完整年份(0000..9999) %F:相当于%Y-%m-%d2.在设定时间方面date-s//设置当前时间只有root权限才能设置其他只能查看。 date-s20080523//设置成20080523这样会把具体时间设置成空00:00:00 date-s01:01:01//设置具体时间不会对日期做更改 date-s“01:01:012008-05-23″//这样可以设置全部时间 date-s“01:01:0120080523″//这样可以设置全部时间 date-s“2008-05-2301:01:01″//这样可以设置全部时间 date-s“2008052301:01:01″//这样可以设置全部时间3. 时间戳时间-时间戳date%s 时间戳-时间date-d1508749502 Unix时间戳英⽂为Unixepoch,Unixtime,POSIXtime或Unixtimestamp是从1970年1⽉1 ⽇UTC/GMT的午夜开始所经过的秒数不考虑闰秒 [roothcss-ecs-f571 ~]# date Wed Jul 30 17:53:13 CST 2025 [roothcss-ecs-f571 ~]# date %Y date: invalid date ‘%Y’ [roothcss-ecs-f571 ~]# date %Y 2025 [roothcss-ecs-f571 ~]# date %Y date: invalid date ‘%Y’ [roothcss-ecs-f571 ~]# y -bash: y: command not found [roothcss-ecs-f571 ~]# date %Y/%m/%d-%H:%M:%S 2025/07/30-17:54:41 [roothcss-ecs-f571 ~]# date %Y/%m/%d-%H:%M:%S -d 0 1970/01/01-08:00:00 [roothcss-ecs-f571 ~]# 十六、cal指令cal命令可以用来显示公历阳历日历。公历是现在国际通用的历法又称格列历通称阳历。“阳 历”又名“太阳历”系以地球绕行太阳一周为一年为西方各国所通用故又名“西历”。 命令格式cal 参数 [年份]功能用于查看日历等时间信息如只有一个参数则表示年份(1-9999)如有两个参数则表示月份和年份常用选项-3显示系统前⼀个月当前月下一个月的月历-j 显示在当年中的第几天⼀年日期按天算从1月1号算起默认显示当前月在⼀年中的天数-y 显示当前年份的日历 [roothcss-ecs-f571 ~]# cal -y2025 January February March Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa1 2 3 4 1 15 6 7 8 9 10 11 2 3 4 5 6 7 8 2 3 4 5 6 7 8 12 13 14 15 16 17 18 9 10 11 12 13 14 15 9 10 11 12 13 14 15 19 20 21 22 23 24 25 16 17 18 19 20 21 22 16 17 18 19 20 21 22 26 27 28 29 30 31 23 24 25 26 27 28 23 24 25 26 27 28 2930 31April May June Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa1 2 3 4 5 1 2 3 1 2 3 4 5 6 76 7 8 9 10 11 12 4 5 6 7 8 9 10 8 9 10 11 12 13 14 13 14 15 16 17 18 19 11 12 13 14 15 16 17 15 16 17 18 19 20 21 20 21 22 23 24 25 26 18 19 20 21 22 23 24 22 23 24 25 26 27 28 27 28 29 30 25 26 27 28 29 30 31 29 30July August September Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa1 2 3 4 5 1 2 1 2 3 4 5 66 7 8 9 10 11 12 3 4 5 6 7 8 9 7 8 9 10 11 12 13 13 14 15 16 17 18 19 10 11 12 13 14 15 16 14 15 16 17 18 19 20 20 21 22 23 24 25 26 17 18 19 20 21 22 23 21 22 23 24 25 26 27 27 28 29 30 31 24 25 26 27 28 29 30 28 29 3031October November December Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa1 2 3 4 1 1 2 3 4 5 65 6 7 8 9 10 11 2 3 4 5 6 7 8 7 8 9 10 11 12 13 12 13 14 15 16 17 18 9 10 11 12 13 14 15 14 15 16 17 18 19 20 19 20 21 22 23 24 25 16 17 18 19 20 21 22 21 22 23 24 25 26 27 26 27 28 29 30 31 23 24 25 26 27 28 29 28 29 30 3130[roothcss-ecs-f571 ~]# cal -jJuly 2025 Sun Mon Tue Wed Thu Fri Sat182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212[roothcss-ecs-f571 ~]#
http://www.zqtcl.cn/news/73788/

相关文章:

  • 网易企业邮箱是什么昆明关键词优化软件
  • 企业网站可以免费做吗电商网页设计实训报告
  • 佛山优秀网站建设做网站搭建的公司
  • 营口网站建设wordpress花生壳lamp
  • 服装网站建设方案怎样淘宝seo排名优化
  • 如何用免费个人网站制作中国万网官网登录
  • 深圳罗湖做网站工作细胞樱花动漫
  • 成都网站平面设计北京企业网站seo平台
  • 如何让域名到网站宁波妇科医院私立哪家医院好
  • 保定网站建网址浏览器
  • 网站开发是前端吗网站顶部布局
  • 网站备案 域名备案视差网站
  • jsp网站制作烟台网站建设电话
  • 建设银行甘肃分行网站珠海营销营网站建设
  • 丰台网站开发联系电话蛋糕店网站建设模版
  • iis7 网站无法显示该页面社交网站建设
  • 广州安全教育平台入口企业网站制作优化
  • php mysql网站开发实例教程食品网站的建设背景
  • 仙游县建设局网站网站域名如何更换
  • 广州外贸营销网站建设公司阿里云多网站
  • 网站版式设计说明xampp安装wordpress说明
  • 沧州市做网站企业网站互动交流模块
  • 宁波网站推广优化公司网站网页设计师
  • 扬中网站优化公司厦门建设局耿家强
  • 站外seo是什么wordpress 权限说明
  • 昆明网站词排名优化宁波企业网制作公司有哪些
  • 电子商务网站规划与设计试题wordpress 留言信息在哪
  • 知名网站建设推荐广告设计内容
  • 网站开发语言有几种到哪里学平面设计
  • 重庆网站备案需要几天世界四大广告公司