因为某种应用场景我需要将特定目录下的txt文件进行清理,核心命令如下: find 目录 -name '*.txt' -type f -print -exec rm -rf {} \; 例如: find /home/tech/data_log -name '*.txt' -type f -print ...
分类:
系统相关 时间:
2021-06-05 17:53:08
阅读次数:
0
Barefoot Networks P4 Studio Build Tool P4 Studio Build is a tool that helps a user to install dependencies, build and install all the required compone ...
分类:
其他好文 时间:
2021-06-04 19:14:12
阅读次数:
0
C#调用数据库中的Procedure的方法 public ExecutionResult CreateWIPSN(MOBaseInfo moBaseInfo) { ExecutionResult execRes; string sqlText; //private InfoLightDBTools ...
分类:
数据库 时间:
2021-06-03 18:15:04
阅读次数:
0
图片的复制无非有两种方法,一种是图片直接上传到服务器,另外一种转换成二进制流的base64码目前限chrome浏览器使用首先以um-editor的二进制流保存为例:打开umeditor.js,找到UM.plugins['autoupload'],然后找到autoUploadHandler方法,注释掉 ...
分类:
其他好文 时间:
2021-06-03 18:03:29
阅读次数:
0
相比Windows系统,Linux系统上安装MySQL比较简单,本文将详细介绍如何在Ubuntu系统安装MySQL。 PART 1 安装MySQL 1.更新软件源 sudo apt update 2.安装MySQL sudo apt-get install mysql-server sudo apt ...
分类:
数据库 时间:
2021-06-03 17:48:23
阅读次数:
0
题目 题目链接:https://codeforces.com/contest/1000/problem/F 给定一个长度为 \(n\) 序列,\(Q\) 个询问,每次询问给定一个区间 \([l,r]\),如果这个区间里存在只出现一次的数,输出这个数(如果有多个就输出任意一个),没有就输出 \(0\) ...
分类:
其他好文 时间:
2021-06-03 17:43:17
阅读次数:
0
1. 关于网络的一些配置 1. 如何启动ssh服务 service sshd start 这里的命令会同时启动ssh服务和scp服务,可以方便用户的远程访问。 2. 如何自动配置网络ip--dhcp # 1. 编辑下面的文件 vim /etc/network/interfaces # 2. 配置网络 ...
分类:
系统相关 时间:
2021-06-03 17:38:47
阅读次数:
0
var intList = new List<int>() { 1 }; var readOnlyList = new ReadOnlyCollection<int>(intList); var immutableList = intList.ToImmutableList(); Console.F ...
目录 莫比乌斯函数 莫比乌斯反演 莫比乌斯函数 首先,我们先介绍一下莫比乌斯函数 \(\mu(x)\) 设 \(x\) 质因数分解式为:\(x = \prod_{i=1}^k p_i^{\alpha_i}\) $$\mu(x)= \begin 0& \exists \alpha_i \geqslan ...
分类:
其他好文 时间:
2021-06-02 19:55:09
阅读次数:
0
都知道解决 外边距塌陷 有多种方法 其中一种 是给父盒子加个overflow:hiden;例如 <style> p { color: #f55; background: #fcc; width: 200px; line-height: 100px; text-align:center; margin ...
分类:
其他好文 时间:
2021-06-02 19:54:48
阅读次数:
0