- 博客(7)
- 资源 (3)
- 收藏
- 关注
原创 ubuntu安装jmeter5.5 切换中文乱码
apt-get install -y language-pack-zh-hans ttf-wqy-zenhei
2023-04-25 16:56:56
94
转载 C语言字节对齐问题
结构体变量的首地址能够被其对齐字节数大小所整除。 结构体每个成员相对结构体首地址的偏移都是成员大小的整数倍,如不满足,对前一个成员填充字节以满足。 结构体的总大小为结构体对齐字节数大小的整数倍,如不满足,最后填充字节以满足。...
2020-05-13 22:35:51
171
转载 VIM重新打开文件时如何回到上次停留的位置即上次退出文件时的位置
编辑 ~/.vimrc,加入以下内容:if has("autocmd") au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endifendif
2020-04-03 23:21:18
4001
转载 没有文件扩展“.vbs”的脚本引擎的解决方案
当你在运行一些基于VBS脚本语言的文件时,系统可能报错。这时候可能是你的VBS脚本服务在注册表中出错了,原因可能是卸载或安装一些代码不规范的程序引起的。这里给出无法找到脚本引擎"vbscript"的解决方法:1)找到文件: C:\WINDOWS\inf\wsh.inf,右键“安装”;2)开始→运行行里输入: regsvr32 urlmon.dll shdocvw.dll jscript
2017-12-13 10:49:45
53245
3
翻译 shell 交换stderr stdout 3>&1 1>&2 2>&3
"command n>file" redirects command's file descriptor n into the given file. The number before the > is the file descriptor bring modified, and what's after the > is what it's being set to write to.
2017-10-30 14:09:38
1448
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人