摘要: 参考网站 【Linux】Ubuntu部署K8S集群-图文并茂(超详细)-CSDN博客 1、机器准备(Ubuntu) 1.1、机器配置 机器名称内存处理器(核心)硬盘网络适配器 k8s-master 2GB 4 50G NAT k8s-node1 2GB 4 50G NAT k8s-node2 2GB 阅读全文
posted @ 2025-01-08 13:50 shunlu01 阅读(197) 评论(0) 推荐(0)
摘要: [ -d /oldboy ] || mkdir /oldboy cd /oldboy for i in {1..10} do filename=$(uuidgen|tr '0-9' 'a-z'|cut -c 1-10 ) touch ${filename}_oldboy.html done 详解: 阅读全文
posted @ 2021-10-21 10:11 shunlu01 阅读(212) 评论(0) 推荐(0)
摘要: declare cur1 cursor for sql;open cur1;fetch cur1 into :参数;DO WHILE SQLCA.SQLCode = 0 //循环体 fetch cur1 into :参数;LOOPCLOSE cur1; 阅读全文
posted @ 2021-06-03 09:03 shunlu01 阅读(222) 评论(0) 推荐(0)
摘要: --查找字符串位置 Pos()功能在一个字符串中查找所包含的另一个字符串的起始位置。语法Pos ( string1, string2 {, start } )参数string1:string类型,指定要从中查找子串string2的字符串string2:string类型,指定要在string1中查找的 阅读全文
posted @ 2021-05-25 11:02 shunlu01 阅读(1885) 评论(0) 推荐(0)
摘要: 格式一:instr( string1, string2 ) // instr(源字符串, 目标字符串) 格式二:instr( string1, string2 [, start_position [, nth_appearance ] ] ) // instr(源字符串, 目标字符串, 起始位置, 阅读全文
posted @ 2021-05-25 10:28 shunlu01 阅读(56) 评论(0) 推荐(0)
摘要: Tab控件-Tab 【其他】 ■调整标签页的顺序:点击标签以选中标签控件,在属性视窗中进入到Pageorder属性页,在Page Name列中点击选中要调整顺序的标签页,然后使用鼠标拖动到适当的位置即可。 ■虽然标签控件是一个相当不错的控件,但因为它上面可以放置很多的其他控件,所以应该想法减少该控件 阅读全文
posted @ 2021-05-21 10:29 shunlu01 阅读(1331) 评论(0) 推荐(0)