方法一: ksql -At xxx -c "select datname from sys_database"|grep -v -E 'TEST|TEMPLATE1|TEMPLATE0|SAMPLES|TEMPLATE2'|awk '{sum=sum","$1} END {print sum}' 方 ...
分类:
其他好文 时间:
2020-07-02 18:13:38
阅读次数:
115
杂言 我从来不知道自己有那么热爱学习(大哭),摸鱼了一个学期,最后一个月终于把期末给应付过去了,接下来就是把之前应付考试的时间补回来刷题和实习准备了,这次是5月网鼎青龙组的一道,我现在才拿来复现。。。。 解题 开幕雷击 <?php include("flag.php"); highlight_fil ...
分类:
其他好文 时间:
2020-07-01 20:36:44
阅读次数:
68
C# Net 交换两个变量的值 C# Net 使用元祖交换两个变量的值 C# Net 交换 两个变量值 原来的办法(中间变量): int a = 1; int b = 1; int c; c=b; b=a; a=c; 在C# 7.0 中存在泛型 Tuple(元祖) 类 int a = 1; int ...
DROP PROCEDURE IF EXISTS init ; delimiter $ CREATE PROCEDURE init( in my_database VARCHAR(200), in column_name VARCHAR(200), in my_new_value VARCHAR(2 ...
分类:
数据库 时间:
2020-07-01 14:19:11
阅读次数:
66
div class='big2'> <div class='small2'>box3</div> </div> .big2{ height:200px; width:200px; border:black solid 1px; text-align:center; } .small2{ height ...
分类:
其他好文 时间:
2020-07-01 12:53:44
阅读次数:
97
ZooInspector下载地址https://issues.apache.org/jira/secure/attachment/12436620/ZooInspector.zip; 解压,进入目录ZooInspector\build, 双击zookeeper-dev-ZooInspector.ja ...
分类:
其他好文 时间:
2020-07-01 12:21:12
阅读次数:
168
centos8如何重启网络服务 1.重启网卡之前一定要重新载入一下配置文件,不然不能立即生效 1 nmcli c reload 2.重启网卡(下面的三条命令都可以): 1 2 3 nmcli c up ens160 nmcli d reapply ens160 nmcli d connect ens ...
分类:
其他好文 时间:
2020-07-01 09:16:20
阅读次数:
884
平台:tiny4412SDK 1161 + HD700 kernel:linux 3.5 bmp:24位深 前言: 前边设置好了HD700的驱动,能够正常显示像素,现在学习bmp图片格式并显示一张bmp图片。 1、bmp图片格式: BMP是英文Bitmap(位图)的简写,它是Windows操作系统中 ...
分类:
系统相关 时间:
2020-06-30 22:09:54
阅读次数:
80
#!/bin/bash # SPDX-License-Identifier: GPL-2.0 # + + + + # | vrf-h1 | | vrf-h2 | # | + $h1 | | + $h2 | # | | 10.1.1.101/24 | | | 10.1.2.101/24 | # | | ...
分类:
其他好文 时间:
2020-06-30 13:18:25
阅读次数:
56
public static void main(String[] args) { // 在控制台输入字符串,统计出大写的字符的个数,小写的字符个数,数字类型的字符个数,以及其他字符的个数 Scanner sc = new Scanner(System.in); //控制台输入字符串 int big ...
分类:
其他好文 时间:
2020-06-30 11:06:08
阅读次数:
55