摘要:
tasks.json { "version": "2.0.0", "tasks": [ { "taskName": "shell", // 任务名称,与launch.json的preLaunchTask相对应 "command": [ "export PKG_CONFIG_PATH=/usr/loc 阅读全文
摘要:
Failed to connect to the remote extension host server (Error: WebSocket close with status code 1006) https://zhuanlan.zhihu.com/p/424569389 阅读全文
摘要:
通常ls列出的文件,想直接管道通过rm -rf删除是无效的.这时就要配合命令xargs使用了: 例如: 按时间排序,删除最后的10个文件 ls -t | tail -10 | xargs rm -rf 当然,也可以用 ls -lt | tail -100 | awk '{ print $9 }' | 阅读全文
摘要:
(gdb) p arr $8 = (struct rte_fbarray *) 0x1000000b0 (gdb) p *arr $9 = {name = '\000' <repeats 63 times>, count = 0, len = 0, elt_sz = 0, data = 0x0, r 阅读全文