查找当前目录下某个文件 find . –name [filename] -i 不区分大小写 find . –iname [filename] -type 按类型进行查找,d查找目录,f查找文件 find . –type d –name [document] find . type f –name [ ...
分类:
系统相关 时间:
2021-06-13 09:58:24
阅读次数:
0
前言 好久没发博客了啊,今天划个水发一个, 实际上看我最近的题解和博客可以发现我文章的格式变得规整了起来。 因为发着一篇愉悦一下,所以语言可能生动皮一点。 前置芝士 🍞🍕🍞两面包夹芝士!(雾) 请大家放心,下面还是 C++ 语言,而不是 M++ 语言。(笑) One 引入性质:任意正整数都能被 ...
分类:
编程语言 时间:
2021-06-13 09:57:44
阅读次数:
0
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:
其他好文 时间:
2021-06-13 09:55:40
阅读次数:
0
最近上手写了自己的第一个油猴脚本(不知道这样说准不准确),严格意义上来将是,借助于油猴这个脚本平台,写了自己的第一个脚本,并成功运行测试 当然,这篇文章不讲我究竟做了啥,而是说在编写脚本时需要注意的东西,主要是上面的 ...
分类:
其他好文 时间:
2021-06-13 09:54:30
阅读次数:
0
程序那一行:你一般找 就能找到 工作目录 然后把 UIC 也加上 程序路径也在刚才那个下面,只不过 在 bin 目录下得上面, 在下 ...
分类:
其他好文 时间:
2021-06-13 09:52:20
阅读次数:
0
跑命令bedtools genomecov -ibam file.bam -bga -split -trackline > file.wig时出现的报错。 解决方案: samtools sort file.bam -T /tmep -o file.sorted.bam #/tmep指的是新建一个tm ...
分类:
其他好文 时间:
2021-06-13 09:43:05
阅读次数:
0
1、 <router-link to="/home">首页</router-link> 2、 this.$router.push({path:'/content/495'}); this.$router.push({name:'news',params:{userId:123}}) 3、命名式路由 ...
分类:
其他好文 时间:
2021-06-13 09:28:10
阅读次数:
0
点开题目,发现只是一个计算框 查看一下源代码 发现了一串代码 .ajax是指通过http请求加载远程数据 输入的算式会被传进calc.php文件中 且提示网页存在waf(就是防火墙) 访问cala.php试试 有一串php代码 1 <?php 2 error_reporting(0); 3 if(! ...
分类:
其他好文 时间:
2021-06-13 09:27:14
阅读次数:
0
JDK标准中SPI机制的一个问题就是其一次性实例化扩展点所有实现,如果有扩展实现初始化很耗时,但如果没用上也加载,会很浪费资源。Dubbo是如何解决该问题动态的选择具体的扩展点呢?使用@Adaptive。 查看@Adaptive注解源码及其注释,如下: 通过上面注释分析:如果不使用@Adaptive ...
分类:
其他好文 时间:
2021-06-13 09:25:01
阅读次数:
0
问题描述 报错信息如下所示: ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrit ...
分类:
Web程序 时间:
2021-06-11 19:17:07
阅读次数:
0