这篇笔记主要记录一下我在学习生活/开发过程中使用比较频繁Linux/Windows shell commands,一方面是加深自己的印象,另一方面也方便自己的使用,每次都需要去搜索需要使用的command比较耗时,写一个个性化一些的笔记能够更有侧重点,查阅起来也更方便一些。 优先会记录一些我常使用的commands,不限于shell内部命令,还会包
{fileBasenameNoExtension}", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true, "MIMode": "gdb", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": ...
// "customLaunchSetupCommands": [ // { "text": "target-run", "description": "run target", "ignoreFailures": false } // ], //"launchCompleteCommand": "None", "linux": { "MIMode": "gdb", "miDebuggerPath": "/usr/bin/gdb" }, "osx": { "MIMode": "lldb" }, "windows": ...
(& WSL 2 to improve speed and performance), and then use a genuine Linux Ubuntu instance locally (on the laptop) with whatever Bash commands and tools they prefer. Once the development pipeline is verified locally, Sam can then push that CI/CD pipeline up to the cloud (i.e. Azure) by...
With PowerShell and WSL, we can integrate Linux commands into Windows just as if they were native applications. No need to hunt around for Win32 builds of Linux utilities or be forced to interrupt your workflow to drop into a Linux shell. Justinstall WSL, set up ...
(& WSL 2 to improve speed and performance), and then use a genuine Linux Ubuntu instance locally (on the laptop) with whatever Bash commands and tools they prefer. Once the development pipeline is verified locally, Sam can then push that CI/CD pipeline up to the cloud (i.e. Azure) by...
The WinDbg # command outputs two lines for each finding, hence the sed commands using its N command to read the next line into pattern space First command: Filter for findings beginning with ntdll!Ldr because we're interested in the loader Use this sed as a grep -v -A1 substitute ...
linux下使用vscode可以执行一些简单的编译,可以搭配手写编译命令/makefile/或者其他编译命令行生成工具 references 官网提供的配置教程(vscode+cpp): https://code.visualstudio.com/docs/cpp/config-mingw 官方文档简述 (利用默认生成的配置文件,快速配置环境) ...
VS Code:Windows下编写运行C/C++程序(GCC) 1. 安装Visual Studio Code 下载地址:https://code.visualstudio.com/Download PS:"System Installer":对当前系统,好像方便获取系统权限;"User Installer":对当前用户,不好装就用"System Installer"吧。 2. 在VS Code中安装 C/C++扩展(快捷键:Ctrl+Shift+X) ...
Linux版本配置(简要) 1、下载安装vscode https://code.visualstudio.com/Download 2、安装cpptools插件 打开vscode,按ctrl+p打开快速命令框,输入以下命令后等待 ext install cpptools vscode在短暂的联网查找后会列出插件列表,如图: 点击箭头所指处的按钮安装插件,安装过程可能会有些慢耐心等待 安装完成后vscode会提示你...