1.基础bash命令 查看历史命令记录 history 查看时间 date 目录进入 cd 路径 查看目录结构 ls ls -a --全部文件 ls -l --详细信息 ls -la --全部文件详细信息 1.1文件目录操作 tree --以树状机构查看目录及文件 白色:普通文件 蓝色:目录 绿色: ...
分类:
系统相关 时间:
2021-04-29 12:01:17
阅读次数:
0
#### jQuery的四种选择器 jQ选择器与css选择器本质上相差不大,但是在使用容易混淆格式或属性 ##### 1.基础选择器 $('#id名') $('.类名') $('.类名1 .类名2') $('标签名.类名') ##### 2.层级选择器 ###### 1.子代:> children ...
分类:
其他好文 时间:
2021-04-29 11:44:29
阅读次数:
0
Nginx 处理请求的过程一共划分为 11 个阶段,按照执行顺序依次是 post-read、server-rewrite、find-config、rewrite、post-rewrite、preaccess、access、post-access、try-files、content 以及 log。 1 ...
分类:
其他好文 时间:
2021-04-29 11:38:38
阅读次数:
0
selenium八大元素定位方式 driver.find_element_by_id(‘id’)#id定位driver.find_element_by_name(‘name’)#name定位driver.find_element_by_class_name(‘class’)#classname定位 ...
分类:
其他好文 时间:
2021-04-28 11:45:12
阅读次数:
0
You need to activate the Developer Options and USB Debugging for the purpose. Follow the below mention steps and you would be good to go: 1.Slide into ...
分类:
其他好文 时间:
2021-04-28 11:44:14
阅读次数:
0
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:
其他好文 时间:
2021-04-27 15:16:42
阅读次数:
0
import pandas as pd import os import re path = "./files/" files = os.listdir(path) # 用于存放Excel,里面的每个元素类型为:pandas.core.frame.DataFrame list_excel = [] ...
分类:
编程语言 时间:
2021-04-27 14:43:38
阅读次数:
0
1 Could not execute Write_rows event on table cs3.test01; Duplicate entry ‘7‘ for key ‘test01.PRIMARY‘ 1.1 主库操作 SHOW BINARY LOGS; PURGE BINARY LOGS TO ...
分类:
数据库 时间:
2021-04-27 14:28:23
阅读次数:
0
在Ubuntu平台安装QT时,遇到Could not load the Qt platform plugin "xcb" ...
分类:
系统相关 时间:
2021-04-26 13:57:35
阅读次数:
0
grep -n "9cfcb8a4b1f70683" *.log 查找时不区分大小写: grep –i "被查找的字符串" 文件名 查找匹配的行数 grep -c "被查找的字符串" 文件名 从文件内容查找不匹配指定字符串的行: grep –v "被查找的字符串" 文件名 从根目录开始查找所有扩展名 ...
分类:
其他好文 时间:
2021-04-26 13:34:41
阅读次数:
0