上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 39 下一页
摘要: ### 1. 查看系统是否支持中文 locale -a ### 2. 如不支持需安装中文包 apt-get install language-pack-zh-hans -y ### 3. 添加中文支持 locale-gen zh_CN.UTF-8 locale ### 4. 修改配置 cat >>/etc/bash.bashrc <<'EOF' export LC_ALL='zh_CN.UTF-8 阅读全文
posted @ 2019-10-07 22:01 chenzechao 阅读(1410) 评论(0) 推荐(0)
摘要: https://hub.docker.com/r/9fevrier/oracle-11g Informations Oracle directory : /opt/oracle Data directory : /app/oracle/data SID : orcl Login/password : 阅读全文
posted @ 2019-09-27 18:15 chenzechao 阅读(448) 评论(0) 推荐(0)
摘要: /** * 去右空格 * @param str * @return */ public String trimRight(String str) { if (str == null || str.equals("")) { return str; } else { return str.replaceAll("[ ]+$", ""); } } /** * 去左空格 * @param str * @ 阅读全文
posted @ 2019-09-26 17:42 chenzechao 阅读(4269) 评论(0) 推荐(0)
摘要: select t1.table_schema ,t1.table_name ,t1.table_comment ,t2.ordinal_position ,t2.column_name ,t2.data_type ,t2.character_maximum_length ,t2.column_typ 阅读全文
posted @ 2019-09-18 09:54 chenzechao 阅读(1630) 评论(0) 推荐(0)
摘要: ### 启动后不退出容器 docker run -d --name JD-DailyBonus -v "$PWD":/usr/src/app node:latest /bin/bash -c "while true;do echo hello docker;sleep 1d;done" ### 查找 阅读全文
posted @ 2019-09-15 11:43 chenzechao 阅读(225) 评论(0) 推荐(0)
摘要: #!/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 阅读(930) 评论(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 阅读(3926) 评论(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 阅读(4498) 评论(0) 推荐(0)
摘要: 实测过第一种写法,可正常删除 ref: https://blog.csdn.net/u010022051/article/details/51916279/ 阅读全文
posted @ 2019-08-29 10:26 chenzechao 阅读(19393) 评论(0) 推荐(0)
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 39 下一页