A simple tool to generate a call graph for calls within Windows CMD (batch) files.
Project description
cmd-call-graph
A simple tool to generate a call graph for calls within Windows CMD (batch) files.
It takes the input file as stdin and outputs the resulting file to stdout, outputting logs and errors to stderr.
Usage example from WSL (Windows Subsystem for Linux):
$ python3 cmd-call-graph.py < your-file.cmd > your-file-call-graph.dot 2>log
The resulting dot
file can be rendered with any dot
renderer. Example with
graphviz:
$ sudo apt install graphviz
$ dot -Tpng your-file-call-graph.dot > your-file-call-graph.png
$ explorer.exe your-file-call-graph.png
Example
Here is an example CMD script:
@echo off
call :foo
goto :eof
:bar
echo "in bar"
call :baz
call :baz
:baz
echo "in baz"
:foo
echo "In foo"
goto :bar
This script would generate the following graph:
If the --show-all-calls
option is set to True
, then the following graph would be generated:
Why?
Sometimes legacy code bases may contain old CMD files. This tool allows to generate a visual representation of the internal calls within the script.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Unit tests
Run unit tests from the project root by running:
python3 -m unittest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cmd-call-graph-0.1.2.tar.gz
.
File metadata
- Download URL: cmd-call-graph-0.1.2.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ced17a2b67d1d5c78a464a1373dc8d12529aad6cc26d050f3b6ac71e4fc287ec |
|
MD5 | d0c5e19a210a122dbe66464cda274e17 |
|
BLAKE2b-256 | 475e4adf8f6d70ca5b3731a73a4856cdaa5d577d901c2761997b33984e322dd4 |
Provenance
File details
Details for the file cmd_call_graph-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: cmd_call_graph-0.1.2-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1787186bde250d0fa0efd456addb50a82ba362c49de41123230f15e1d581be2 |
|
MD5 | 71ec9d429ef9184a85ba790bd18793d5 |
|
BLAKE2b-256 | acec0fa16db9a53c259a1777aefb9f6880e93981c06b9137d0eae9d2e1d91a75 |