一、rp_filter参数介绍 rp_filter参数用于控制系统是否开启对数据包源地址的校验。 首先看一下Linux内核文档documentation/networking/ip-sysctl.txt中的描述: rp_filter - INTEGER0 - No source validation ...
分类:
系统相关 时间:
2021-02-05 10:45:40
阅读次数:
0
没啥好说的。直接上步骤吧。Mac上没有自带rename命令,所以得先安装rename命令 1、brew install rename 2、批量修改文件名,语法格式: rename 's/stringx/stringy/' files 把 *.txt 文件中的 `你有啥` 全部改成 `我有啥` dem ...
分类:
系统相关 时间:
2021-02-05 10:29:22
阅读次数:
0
文章目录 1、使用windbg中的umdh检查 1.1、 工具下载 1.2、环境配置 1.3、利用工具umdh(user-mode dump heap)分析 1.4、利用umdh创建heap快照 2、使用windbg中的htrace检查 2.1、准备工作 2.2、快照 2.3 、执行操作,比较差异 ...
分类:
数据库 时间:
2021-02-03 10:58:43
阅读次数:
0
各种feature的实现 执行shell 处理时间 处理参数 处理文件 logging test 多线程、进程,并发 语言 python groovy scala java C++ C shell go 执行shell, check output groovy a= "ls".execute(); ...
分类:
编程语言 时间:
2021-02-03 10:42:48
阅读次数:
0
#盘符切换 盘后面加: #查看当前目录下所有文件 dir #切换目录 cd .. 返回上一层 cd 目录名 进入下一层 #清理屏幕 cls #退出终端 exit #查看电脑ip ipconfig #打开应用 calc 计算器 mspaint 画图 notepad 记事本 #ping命令 ping+网 ...
分类:
其他好文 时间:
2021-02-02 11:27:25
阅读次数:
0
### 读取文件 ping 127.0.0.1 -n 1 > tmp.txtfor /f i in (tmp.txt) do ( echo %i% ) ### 延时 借用ping的延时, 当前这个延时不精准,只能是大概有延时1秒的效果 。 ping 0 -n 2 > nul ...
分类:
其他好文 时间:
2021-02-02 11:26:28
阅读次数:
0
# 查找进程文件位置 [toc] ## wmic ```txt 1. 使用get查询 wmic process get name,executablepath 2 无条件查询 wmic process list brief wmic process list full 3 加where条件查询 wm ...
分类:
系统相关 时间:
2021-01-30 12:08:54
阅读次数:
0
正则表达式 使用方法: ①:描述我们要找的字符串的规律 ②:调用函数,执行该正则表达式 PHP: //把字符串haha找出来 $str="haha,this is my blog" preg_match_all('/haha/',$str,$res); print_r($res); 在PHP里正则必 ...
分类:
其他好文 时间:
2021-01-29 12:19:14
阅读次数:
0
一. 当要测不同大小的文件时,比如要求上传文件不超过10兆,那么我们要测: 1. 文件类型:png、jpg、excel、word、pdf、zip、txt等常见的 2. 文件大小,用cmd命令来生成:输入fsutil file createnew E:\test20210128.txt 1048576 ...
分类:
其他好文 时间:
2021-01-29 11:54:24
阅读次数:
0
原文地址:https://www.cnblogs.com/chevin/p/5683281.html 一、使用mysqldump导出/导入sql数据文件 二、使用infile/outfile导入/导出txt/csv数据文件 ———————————————-库操作———————————————-1.① ...
分类:
数据库 时间:
2021-01-29 11:47:21
阅读次数:
0