上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 40 下一页
摘要: #!/bin/bash curl_str='curl -x "http://http-pro.abuyun.com:9010" --proxy-basic --proxy-user H78H42TCN191075P:3D1EA6E4F458AB69' curl_str='curl -L --socks5 socks-cla.abuyun.com:8030 --proxy-user S822RB9T 阅读全文
posted @ 2019-09-12 16:40 chenzechao 阅读(932) 评论(0) 推荐(0)
摘要: 在线验证: jqplay 在线文档: jq 1.5 Manual (jqlang.github.io) jq .data.data dataset_cnt.json >tmpa # 列出数组中的所有itemjq -c 'to_entries[]' tmpa|jq -r '[.value.biz_dt 阅读全文
posted @ 2019-09-12 16:09 chenzechao 阅读(5192) 评论(0) 推荐(0)
摘要: CRT:Name: ygeRCompany: TEAM ZWTSerialNumber: 03-77-119256License Key: ABH2MJ 9YVAC5 Z17QF7 4ZAS7Z ABGYJH CZ5EU3 V4MN88 T18NCTIssue Date: 06-03-2017 FX 阅读全文
posted @ 2019-09-04 22:05 chenzechao 阅读(3993) 评论(0) 推荐(0)
摘要: -- 1. 进入information_schema 数据库(存放了其他的数据库的信息) use information_schema; -- 2. 查询所有数据的大小: select concat(round(sum(data_length/1024/1024),2),'MB') as data 阅读全文
posted @ 2019-08-30 09:07 chenzechao 阅读(4572) 评论(0) 推荐(0)
摘要: 实测过第一种写法,可正常删除 ref: https://blog.csdn.net/u010022051/article/details/51916279/ 阅读全文
posted @ 2019-08-29 10:26 chenzechao 阅读(19397) 评论(0) 推荐(0)
摘要: select TABLE_NAME from ( select TABLE_NAME ,count(1) as cnt from information_schema.tables where TABLE_SCHEMA in ('db_a','db_b') and (table_name not like '%2018%' and table_name not like '%2019%') gro 阅读全文
posted @ 2019-08-28 14:30 chenzechao 阅读(616) 评论(0) 推荐(0)
摘要: #!/bin/sh bin=$(cd `dirname $0`;pwd) cd ${bin} ### 定义检查函数 chk(){ programName=$1 correctNum=$2 programSubName=$3 # 判断是否带子程序名 if [ -n "${programSubName}" ] then programNum=$(ps -ef|grep -Ewv "grep|less| 阅读全文
posted @ 2019-08-26 08:42 chenzechao 阅读(429) 评论(0) 推荐(0)
摘要: # 注意awk的文件不能单独一行 awk打印单双引号 设置超时结束 ref: https://blog.csdn.net/kouryoushine/article/details/92838138ref: https://www.cnblogs.com/emanlee/p/3620785.html 阅读全文
posted @ 2019-08-19 15:32 chenzechao 阅读(199) 评论(0) 推荐(0)
摘要: -- Jira数据库中,用户信息都存放在表 cwd_user中 -- 切换到jiar数据库 use jiradb; -- 更改密码为sphere update cwd_user set credential='uQieO/1CGMUIXXftw3ynrsaYLShI+GTcPS4LdUGWbIusFvHPfUzD7CZvms6yMMvA8I7FViHVEqr6Mj4pCLKAFQ==' where 阅读全文
posted @ 2019-08-07 23:00 chenzechao 阅读(9985) 评论(0) 推荐(0)
摘要: curl -fsSL https://get.docker.com -o get-docker.sh sh get-docker.sh 阅读全文
posted @ 2019-08-05 00:43 chenzechao 阅读(141) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 40 下一页