上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 40 下一页
该文被密码保护。 阅读全文
posted @ 2022-12-06 15:46 chenzechao 阅读(1) 评论(0) 推荐(0)
摘要: # 输出双引号 awk -F "" '{print "\""$1"\"\,"}' "xxxxx", 使用""双引号把一个双引号括起来,然后用转义字符\对双引号进行转义,输出双引号。 # 输出单引号 awk -F "" '{print "'\''"$1"'\'\,'"}' 'xxxxx', # 使用一 阅读全文
posted @ 2022-12-05 15:16 chenzechao 阅读(396) 评论(0) 推荐(0)
摘要: 问题描述 使用docker-compose启动时,报错Cannot autolaunch D-Bus without X11 $DISPLAY ...Cannot autolaunch D-Bus without X11 $DISPLAY... 解决方法 问题出在Linux缺少一个密码管理包gnup 阅读全文
posted @ 2022-10-23 08:25 chenzechao 阅读(164) 评论(0) 推荐(0)
摘要: -- 第一个会话执行 drop table if exists test1; create table test1( id int not null ,name int ,primary key(id) ,unique key(name) ) engine=innodb ; begin; inser 阅读全文
posted @ 2022-10-17 17:53 chenzechao 阅读(979) 评论(0) 推荐(0)
摘要: http://t.zoukankan.com/yunfeifei-p-13158845.html 阅读全文
posted @ 2022-09-25 00:45 chenzechao 阅读(17) 评论(0) 推荐(0)
摘要: Dim mytime,myout1,myout2 mytime = 2 ' mytime = InputBox("请输入定时时间(格式20:10:05)" & vbLf & "如果想倒计时关机,请输入倒计时时间" & vbLf & "(单位/分钟)" & vbLf & "输入‘xxx'可以马上关机" 阅读全文
posted @ 2022-09-24 23:30 chenzechao 阅读(1216) 评论(0) 推荐(1)
摘要: https://www.cnblogs.com/hanzhe/p/16468683.html 阅读全文
posted @ 2022-09-22 10:46 chenzechao 阅读(42) 评论(0) 推荐(0)
摘要: select replace(convert(info using ascii),"?","") as info_fix ,convert(info using ascii) as info_fix2 ,substring_index(substring_index(INFO,'\n',2),'\n 阅读全文
posted @ 2022-09-13 22:44 chenzechao 阅读(243) 评论(0) 推荐(0)
摘要: ### 创建selenium grid(网络必须使用net,不能使用桥接) # https://github.com/SeleniumHQ/docker-selenium/blob/trunk/docker-compose-v3.yml docker network create selenium- 阅读全文
posted @ 2022-08-29 19:38 chenzechao 阅读(154) 评论(0) 推荐(0)
摘要: wget https://repo.huaweicloud.com/repository/conf/openeuler_x86_64.repo -O /etc/yum.repos.d/openEuler.repo yum clean all yum makecache yum -y install 阅读全文
posted @ 2022-07-28 15:04 chenzechao 阅读(1425) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 40 下一页