码迷,mamicode.com
首页 >  
搜索关键字:sed    ( 9762个结果
zabbix 客户端安装
centos6:rpm -ivh http://repo.zabbix.com/zabbix/2.2/rhel/6/x86_64/zabbix-release-2.2-1.el6.noarch.rpm yum install zabbix-agent -y sed -i 's/Server=127. ...
分类:其他好文   时间:2020-07-13 14:04:01    阅读次数:75
echarts 各种特效图
饼图标签展示数值 配置项: option = { title: { text: '项目时间分布', left: 'center' }, tooltip: { trigger: 'item', formatter: '{a} <br/>{b} : {c} ({d}%)' }, legend: { or ...
分类:其他好文   时间:2020-07-13 11:34:37    阅读次数:290
linux文件权限及特殊权限
使用五种方法查看文件权限 # 使用五种方法,查看文件的权限,数字形式 [root@wzh ~]# stat 123|awk -F '[(0/]' 'NR==4{print $3}' 755 [root@wzh ~]# stat 123|sed -nr '4s#.*\(0(.*)/d.*#\1#gp' ...
分类:系统相关   时间:2020-07-12 20:34:55    阅读次数:96
rabbitMQ报错:Caused by: com.rabbitmq.client.ShutdownSignalException: connection error; protocol method:
1.输入的机器的 IP:15672进入Raabitmq的登陆管理界面 点击admin,进去点击set permission ok, 在运行应该就不会包这个错了 ...
分类:其他好文   时间:2020-07-12 20:29:40    阅读次数:163
公共接口url请求地址,axios 或 vuesource 测试 请求 get post jsonp
请求地址:http://wthrcdn.etouch.cn/weather_mini 请求方法:get 请求参数:city(城市名) 响应内容:天气信息 天气 url 歌曲搜索接口 请求地址:https://autumnfish.cn/search 请求方法:get 请求参数:keywords(查询 ...
分类:移动开发   时间:2020-07-12 19:14:23    阅读次数:160
1109 Group Photo (25分)
Formation is very important when taking a group photo. Given the rules of forming K rows with N people as the following: The number of people in each ...
分类:其他好文   时间:2020-07-12 18:52:52    阅读次数:63
zabbix自定义自动发现监控项配置
第1章 例:检查文件系统挂载状态 1.1 自动发现文件系统名称脚本 vi Linux_mountfilename_discovery.sh portarray=(`mount |grep "^/" |grep -E "ext3|reiserfs|ext4|xfs" |awk '{print $3}' ...
分类:其他好文   时间:2020-07-12 17:16:39    阅读次数:174
文本处理sed用法
文本处理器sed sed是一种流编辑器,一次处理一行,处理空间被称为模式空间,配合正则表达式与shell脚本使用广泛。 默认打印p选项 选项 -n 关闭默认打印 -i.bak 将原文件复制为.bak备份文件,并修改原文件 -r 配合扩展表达式 支持正则表达式,用/pattern/格式 地址界定 不给 ...
分类:其他好文   时间:2020-07-12 16:38:36    阅读次数:72
【资源分享】Gmod更改用户名脚本
* [下载区] * 1 require("name") 2 white = Color(255,255,255,255); 3 iceblue = Color(116,187,251,255); 4 chat.AddText( iceblue, "[uX脚本] ", white, "改名器脚本启动成 ...
分类:其他好文   时间:2020-07-11 12:43:28    阅读次数:115
linux查看文件的某几行
一、使用cat、tail、head组合 1、查看最后1000行的数据 cat filename | tail -n 10002、查看1000到3000行的数据 cat filename | head -n 3000 | tail -n +1000 1、cat filename 打印文件所有内容 2、 ...
分类:系统相关   时间:2020-07-10 18:38:54    阅读次数:97
9762条   上一页 1 ... 31 32 33 34 35 ... 977 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!