码迷,mamicode.com
首页 >  
搜索关键字:grep 正则    ( 30181个结果
批量关闭某个程序进程
ps aux|grep java | grep -v grep |awk '{print "kill -9 "$2}'|sh awk文本分析指令,读入一列表(含有换行符,作为一条记录),在一条记录中已空格或者table作为分割符分成n个域,$0表示所以域即整条记录,$1标识第二个域中的内容,$n表示 ...
分类:系统相关   时间:2021-04-24 13:49:09    阅读次数:0
Python - 正则表达式
1 """ 2 正则表达式:regular expression 3 4 本质: 可看成一个模板,按照这个模板规则去匹配 5 6 是一个比较强大的字符串处理工具 7 8 应用场景: 9 1》表单验证 10 2》爬虫 11 3》处理文本和数据 12 13 导入模块:re 14 15 match() 匹 ...
分类:编程语言   时间:2021-04-24 13:40:39    阅读次数:0
python--python脚本中调用shell命令
文章目录python脚本调用shell命令os.system()os.popen()subprocess.call()subprocess.Popen()commandspython脚本传参数给shell命令python脚本获取命令行用户输入参数python传参数给shell命令python传参数给 ...
分类:编程语言   时间:2021-04-24 13:19:00    阅读次数:0
linux系统中awk命令 正则匹配
1、测试数据 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e g x g e w 2、打印匹配w的行 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e ...
分类:系统相关   时间:2021-04-24 13:18:10    阅读次数:0
10-5-----Kubernetes API
API的设计和使用方式 如何开发一个容器平台 在项目deep-in-kubernetes查看有 grep -r "apiVersion" 写法。 api核心组 有两级 版本 资源 apis非核心 三级表示 分组 版本 资源 ...
分类:Windows程序   时间:2021-04-21 12:58:37    阅读次数:0
linux 监控服务器流量
linux 监控服务器流量 #!/bin/bash ethn=$1 while true do RX_pre=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $2}') TX_pre=$(cat /proc/net/dev ...
分类:系统相关   时间:2021-04-21 12:03:54    阅读次数:0
form 表单验证常用正则记录
1. 中文 /^[\u4e00-\u9fa5]{2,4}$/ 2. 手机号 /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/ 3. 电子邮箱 /^\w+([-+.]\w+)*@\w+([-.] ...
分类:其他好文   时间:2021-04-21 11:53:26    阅读次数:0
docker 开放2376端口的问题
docker 要开放2376等端口,必须设置安全证书,否则容易遭到攻击挖矿等恶意行为 根据文章 https://segmentfault.com/a/1190000022023393 配置 配置完成后,使用docker info 或者 netstat -anp|grep 2376 或者netstat ...
分类:其他好文   时间:2021-04-20 15:31:50    阅读次数:0
Gogs私有git仓库 + Drone构建CI/CD
Gogs私有git仓库 + Drone构建CI/CD平台 参考便捷搭建教程:https://github.com/alicfeng/gogs_drone_docker 前提 安装有docker、docker-compose 安装有git 安装有mysql 使用docker-compose安装gogs ...
分类:其他好文   时间:2021-04-20 14:32:57    阅读次数:0
Binder杂记
1. Binder的系统日志文件 # ps -A | grep suspend system 699 1 2184444 4564 binder_ioctl_write_read 0 S android.system.suspend@1.0-service # ls /proc/699/fd -l ...
分类:其他好文   时间:2021-04-19 15:59:18    阅读次数:0
30181条   上一页 1 ... 11 12 13 14 15 ... 3019 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!