SED LEARN NOTE 参考资料 左耳朵耗子叔sed教程 GNU online sed manual SED LEARN NOTE sed基本格式 sed [option] [sed-command] input-file sed对文本的每一行依次执行sed-command,最终返回处理结果 ...
分类:
其他好文 时间:
2021-03-01 13:19:59
阅读次数:
0
//部署项目到服务器 1、gitclone项目到服务器 2、使用 composer 安装依赖,不下载开发下的依赖composer install --optimize-autoloader --no-dev 3、更改项目名为网站名 4、、若The stream or file “/var/www/s ...
分类:
其他好文 时间:
2021-03-01 13:17:15
阅读次数:
0
慢日志 执行时间 > 10 未命中索引 日志文件路径 配置 内存 show variables like '%queries%'; set global [变量名] = [值] 配置文件 mysqld --defaults-file='E:\wupeiqi\mysql-5.7.16-winx64\m ...
分类:
其他好文 时间:
2021-02-26 13:15:05
阅读次数:
0
问题:真机模拟器库无法合并,报错:have the same architectures (arm64) and can't be in the same fat output file 分析:Xcode12之前:编译模拟器静态库支持i386 x86_64两架构;编译真机静态库支持armv7 arm ...
分类:
其他好文 时间:
2021-02-26 13:05:06
阅读次数:
0
例如 _sopen_s 在磁盘空间不够的时候, 宏 errno 就会返回 ENOSPC(28) MSDN 文档时只提到以下错误码 errno valueCondition EACCES The given path is a directory, or the file is read-only, ...
1 function httpString(s) { 2 var reg = /(https?|http|ftp|file):\/\/[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]/g; 3 s = s.match(reg); 4 return ...
分类:
Web程序 时间:
2021-02-26 13:00:13
阅读次数:
0
1.使用spy++,安装vs c++核心功能才会有,在以下路径 C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools 2.点击工具栏 查找窗口,拖动放到要查找的程序上,点击确定 3. 点击确定 4. ...
1、本质 硬链接:本质是同一个文件 软链接:本质还是同一个文件 [root@CentOS8 data]# ln a.txt test/b.txt [root@CentOS8 data]# ll -i a.txt test/b.txt 131 -rw-r--r--. 2 root root 0 Feb ...
分类:
其他好文 时间:
2021-02-26 12:56:00
阅读次数:
0
[root@localhost logs]# tail -100f error.log ngx_http_fastdfs_process_init pid=11255 [2021-02-24 19:11:20] ERROR - file: ../common/fdfs_http_shared.c, ...
分类:
其他好文 时间:
2021-02-26 12:54:25
阅读次数:
0
打开本地文件: QDesktopServices::openUrl(QUrl::fromLocalFile("文件路径")); 重命名: QFile file("C:xx.txt"); file.rename(C:xxx.txt); 删除文件: QFile::remove("文件路径"); 文件拷贝 ...
分类:
其他好文 时间:
2021-02-25 12:00:25
阅读次数:
0