grep命令 grep命令用于查找文件里符合条件的字符串,如果发现某文件的内容符合所指定的模式,grep命令会把含有模式的那一行显示出来。若不指定任何文件名称,或是所给予的文件名为-,则grep指令会从标准输入设备读取数据。 语法 grep [OPTION]... PATTERN [FILE]... ...
分类:
其他好文 时间:
2020-12-21 11:47:01
阅读次数:
0
1,切换oracle用户 su - oracle 2,用sys登陆数据库 sqlplus / as sysdba 3,查看archivelog日志占用空间大小 set line 999;--设置显示长度999 select * from v$recovery_file_dest;--查看archiv ...
分类:
数据库 时间:
2020-12-21 11:46:08
阅读次数:
0
String file = urlConfig.getLocalDir()+videoId+".mp4"; RandomAccessFile randomFile = new RandomAccessFile(new File(file), "r");//只读模式 long contentLengt ...
分类:
其他好文 时间:
2020-12-21 11:43:47
阅读次数:
0
alter database 数据库名 set offline alter database 数据库名 modify file(name=原始数据文件名(无后缀), filename='新文件路径(带后缀)') alter database 数据库名 modify file(name=原始数据日志文 ...
分类:
数据库 时间:
2020-12-21 11:33:44
阅读次数:
0
1.错误zlib.h compress.c:14:58: fatal error: zlib.h: No such file or directory compilation terminated. 解决:sudo apt-get install zlib1g-dev 2.错误bison make[ ...
分类:
系统相关 时间:
2020-12-21 11:05:21
阅读次数:
0
CST8221–JAP,Assignment 2, Part 2,MMXX Page 1 of 9Assignment 2 part 2: Othello Networking Value: 8% of your overall grade.Due date: December 13th (Sund ...
分类:
其他好文 时间:
2020-12-21 11:02:31
阅读次数:
0
secret apiVersion: v1 data: password: MTIzNDU2 username: YWRtaW4= kind: Secret metadata: creationTimestamp: null name: my-secret configmap apiVersion: ...
分类:
其他好文 时间:
2020-12-21 10:56:00
阅读次数:
0
1.分离视频音频流 ffmpeg -i input_file -vcodec copy -an output_file_video //分离视频流 ffmpeg -i input_file -acodec copy -vn output_file_audio //分离音频流 2.视频解复用 ffmp ...
分类:
其他好文 时间:
2020-12-19 13:22:49
阅读次数:
1
1.find() 返回值为目标元素的下标,若不存在目标元素则返回-1 #include<iostream> using namespace std; int main() { string str1 = "A BC", str2 = "abc"; char c = '5'; int i; i= st ...
分类:
其他好文 时间:
2020-12-19 13:09:58
阅读次数:
2
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <!-- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.410.0. ...
分类:
编程语言 时间:
2020-12-19 12:21:45
阅读次数:
2