tar *.Z 使用compress压缩的文件 *.zip 使用zip压缩的文件 *.gz 使用gzip压缩 *.bz2 使用bzip2压缩 *.xz 使用xz压缩 *.tar 使用tar工具打包,没有压缩 *.tar.gz 使用tar工具打包,经过gzip压缩 *.tar.bz2 使用tar工具打 ...
分类:
其他好文 时间:
2020-05-20 12:05:56
阅读次数:
50
C and C++ allow various types of operators. By now, you should be familiar with the basic binary operators +, -, *, / and the boolean operators <, >, ...
分类:
其他好文 时间:
2020-05-19 12:14:52
阅读次数:
62
2 (1) 3 #include<stdio.h> 4 FILE * myFile = NULL; 5 myFile = fopen(“input_file.dat” , “r”); 6 /* r-> open for reading w-> writing a-> appending */ 7 I ...
分类:
其他好文 时间:
2020-05-19 09:16:40
阅读次数:
56
切割的前提是服务的脚本放在/var/log下面,而且以.log结尾 bash FW=nginx A=daily B=weekly C=yearly /var/log/$FW/ .log { $A missingok rotate 52 compress delaycompress notifempt ...
分类:
其他好文 时间:
2020-05-16 10:30:38
阅读次数:
54
1.Scalability 多加一台机器可多做一件事,这个就叫scalability,亦可为两台机器做一件事的时间减少为一半,叫 scalability speed up。 2.Parallelism 并行,跟concurrency不一样,这张图能很好说明区别: 3.Fault tolerance ...
分类:
其他好文 时间:
2020-05-16 00:51:44
阅读次数:
57
function compress_html($string) { $string = str_replace("\r\n", '', $string); //清除换行符 $string = str_replace("\n", '', $string); //清除换行符 $string = str_ ...
分类:
Web程序 时间:
2020-05-14 17:41:15
阅读次数:
69
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.18</version> </dependency> package com.example ...
分类:
编程语言 时间:
2020-05-13 09:43:13
阅读次数:
106
Basic OGNL expressions OGNL Apache Commons OGNL Language Guide https://commons.apache.org/proper/commons ognl/language guide.html mybatis:org.apache.i ...
分类:
其他好文 时间:
2020-05-12 20:20:21
阅读次数:
66
kubernetes v1.18.2 二进制部署双栈 kubelet 部署
分类:
Web程序 时间:
2020-05-09 00:24:23
阅读次数:
79
Vue 动态表格+插入自定义表头 <!-- 表格 --> <el-table :data="templateData" style="width: 100%;" stripe ref="templateTable" :empty-text="$t('basic.noData')" @filter-c ...
分类:
其他好文 时间:
2020-05-07 18:14:31
阅读次数:
190