码迷,mamicode.com
首页 >  
搜索关键字:sed 基本用法    ( 12859个结果
WinForm实现无边框窗体的拖动
一个登录窗体,FormBorderStyle属性设置为None,打开后不能挪动位置,有时候会妨碍使用,有点恶心。网上找了段内容,实现拖动效果: #region 无边框拖动效果,Form被PictureBox覆盖,Form事件不会被触发 [System.Runtime.InteropServices. ...
分类:Windows程序   时间:2021-05-24 04:38:38    阅读次数:0
Mybatis xml映射方便的写法
<sql id="insertColumn"> data_job_id, ds_info, src_ds_type, dst_ds_type, scene_state, last_checked_time, check_period_ms, last_round_reset_time, round_ ...
分类:其他好文   时间:2021-05-24 04:16:16    阅读次数:0
5/09/21 记vue-route基本用法
1. 安装 npm i vue-router yarn add vue-router 2. 定义 src/router/index.js import Vue from 'vue' import VueRouter from 'vue-router' import Home from '@/view ...
分类:其他好文   时间:2021-05-24 03:48:28    阅读次数:0
linux apline - ssh服务安装及免密登陆实现
目标机器 安装ssh服务 apk add openssh-server apk add openssh sed -i "s/#PermitRootLogin.*/PermitRootLogin yes/g" /etc/ssh/sshd_config && \ sed -i "s/#Port.*/Po ...
分类:系统相关   时间:2021-05-24 02:45:26    阅读次数:0
【转】3种TCP连接异常的情况。
原文:http://www.bubuko.com/infodetail-3022082.html 本文介绍3种TCP连接异常的情况。 1.server端没有启动,client尝试连接 ./client dial failed: dial tcp 127.0.0.1:8080: connect: co ...
分类:其他好文   时间:2021-05-24 01:04:14    阅读次数:0
http接口监控脚本
环境:centos7 效果:监控所有接口,连续失败两次,发送信息给运维人员 思路:执行check.sh—读取interface接口内容—调用http-check脚本判断接口是否成功,失败写入文件fail.txt中—est-faile-time脚本判断失败的次数,两次及以上检测都失败——调用脚本sed ...
分类:Web程序   时间:2021-05-24 00:58:58    阅读次数:0
ssh登录基于key验证
ssh基于key验证 1,在客户端生成公钥私钥对并将公钥拷到要连接的服务器上,验证是否成功 [root@localhost ~]# ssh-keygen Generating public/private rsa key pair. Enter file in which to save the k ...
分类:其他好文   时间:2021-05-23 22:59:40    阅读次数:0
树莓派4B-搭建Jenkins
官网下载Jenkins https://www.jenkins.io/zh/download/ 构建jenkins镜像 # docker build -t jenkins:2.277.3 . from ubuntu:latest run sed -i 's/ports.ubuntu.com/mirr ...
分类:其他好文   时间:2021-05-04 16:25:44    阅读次数:0
0630. Course Schedule III (H)
Course Schedule III (H) There are n different online courses numbered from 1 to n. You are given an array courses where courses[i] = [durationi, lastD ...
分类:其他好文   时间:2021-05-04 16:09:30    阅读次数:0
shell逐行读取替换
#!/bin/bash while read linedo echo $line txt=`echo $line |awk -F' ' '{print $1}'` id=`echo $line|awk -F' ' '{print $3}'` echo $txt echo $id sed "s/ws2 ...
分类:系统相关   时间:2021-05-03 12:39:24    阅读次数:0
12859条   上一页 1 ... 4 5 6 7 8 ... 1286 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!