一,我们的结构如下 二,代码UnitTestApplication package com.nl; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.Spr ...
分类:
编程语言 时间:
2021-06-10 18:27:41
阅读次数:
0
1.查看日志常用命令 tail: -n 是显示行号;相当于nl命令;例子如下: tail -100f test.log 实时监控100行日志 tail -n 10 test.log 查询日志尾部最后10行的日志; tail -n +10 test.log 查询10行之后的所有日志; head: 跟t ...
分类:
系统相关 时间:
2021-05-24 05:03:46
阅读次数:
0
1.文本编辑介绍 Linux文本处理工具: nano #字符工具,全屏显示 gedit #图形化工具,全屏显示 vi #文本编辑器,centos最小化安装自带 vim #从vi发展来的文本编辑器,有插入模式、命令模式、扩展模式 cat #可查看文本内容 tac #逆向显示文本内容 nl #文本查看, ...
分类:
系统相关 时间:
2021-05-24 02:04:30
阅读次数:
0
21篇测试必备的Linux常用命令,每天敲一篇,每次敲三遍,每月一循环,全都可记住!! https://www.cnblogs.com/poloyy/category/1672457.html 每次显示5行 more -5 test.txt 从第5行开始显示 more +5 test.txt 每次翻 ...
分类:
系统相关 时间:
2021-02-23 14:33:16
阅读次数:
0
高斯消元解线性方程组 时间复杂度:O(\(n^3\)) https://www.luogu.com.cn/problem/P3389 题意:给定一个线性方程组,对其求解。 #include <bits/stdc++.h> using namespace std; const char nl = '\ ...
分类:
其他好文 时间:
2021-02-17 14:54:53
阅读次数:
0
neodash 方便构建基于ne4j dashboard 的工具 包含的特性 实时图表直支持(table,图,bar,line。。。) 支持neo4j 数据类型 自定义配置 保存以及加载为json 格式 参考效果 参考资料 https://nielsdejong.nl/neo4j%20project ...
分类:
其他好文 时间:
2021-02-16 11:55:48
阅读次数:
0
#1.方法1 通过sed命令,删除对应行,再增加行,增加缩进。 #2.具体操作 ##2.1删除行 nl 要删除的json文件 | sed '2,5d' 或者 sed '2d' 要删除的json 补充说明:nl命令-增加显示文件的行号。 sed命令-2~5d删除指定行 ##2.2增加行 sed '4a ...
分类:
Web程序 时间:
2021-02-02 10:53:10
阅读次数:
0
b题:b其实不难题意就是不让k个连续字符成为一个周期。这提给我的教训就是中文翻译应该结合英文题目一起看, #include<bits/stdc++.h>#include<algorithm>#define ll long longusing namespace std;const ll nl=1e5 ...
分类:
其他好文 时间:
2020-11-02 10:12:11
阅读次数:
22
#include<bits/stdc++.h>#define ll long long#define speed_up ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);using namespace std;const ll nl=1e5+5;/ ...
分类:
其他好文 时间:
2020-07-27 09:31:11
阅读次数:
66
#include<bits/stdc++.h>#define ll long long#define speed_up ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);using namespace std;const ll nl=1e5+5;/ ...
分类:
其他好文 时间:
2020-07-26 23:23:20
阅读次数:
105