cli-debugging-cheatsheets

授权协议 MIT License
开发语言 SHELL
所属分类 应用工具、 终端/远程登录
软件类型 开源软件
地区 不详
投 递 者 卜存
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Command Line Debugging Cheatsheets

Collection of language and runtime command-line debugging common actions

Index

Why is this important?

  1. �� You won't always have 3rd party tooling when debugging an issue
  2. Learn the native builtin support for debugging
  3. �� Decouple yourself (developer) from an IDE

But why a collection? Why a GitHub repository?

  • As a programmer of multiple languages �� sometimes I need a glance at current_language's cli debugging syntax
  • During urgent debugging times �� where you need to debug via cli a concise and to-the-point cheatsheet saves valuable time
  • A consistent experience for all languages/runtimes via a template ��

Help make this better!

I'm only one developer that only works with a subset of languages. Don't see your beloved programming_language? �� Add it!

  1. Fork this repo
  2. Copy the template: cp .template.md <programming_language>.md
  3. Make your additions to <programming_language>.md
  4. Create a pull request to be merged upstream
 相关资料
  • uORB是一个异步publish() / subscribe() 消息API,用于线程进程间的通信。listener 命令可以用于从 QGroundControl MAVLink Console 中检查话题(消息)的值,包括传感器当前发布的值。 提示: 这是一个很有效的调试工具,因为它可以在通过无线连接QGC的时候使用(例如:当飞机在飞行的时候)。 注意: listener命令也可以在 Syste

  • shell提供了用于debugging脚本的工具。如果我们想以debug模式运行某脚本,可以在其shebang中使用一个特殊的选项: #!/bin/bash options options是一些可以改变shell行为的选项。下表是一些可能对你有用的选项: Short Name Description -f noglob 禁止文件名展开(globbing) -i interactive 让脚本以 交

  • 链接 FAQ 系统控制台 自驾仪调试 Sensor/Topic Debugging 仿真调试 System-wide Replay 发送调试的值 Profiling 日志记录 飞行日志分析 ULog文件格式

  • Xdebug provides an interface for debugger clients that interact with running PHP scripts. This section explains how to set-up PHP and Xdebug to allow this, and introduces a few clients. Introduction X

  • Since Visual Studio Code implements a language agnostic debug UI, it does not communicate directly with real debuggers but instead talks to so-called debug adapters through an abstract wire protocol,