Crates.io | vcdump |
lib.rs | vcdump |
version | 0.1.2 |
source | src |
created_at | 2020-04-08 16:21:20.376102 |
updated_at | 2020-09-29 20:21:16.368954 |
description | Simple tool to convert vcd files to json files so that you can use all your favorite command line tools to view the output of your vcd files. |
homepage | |
repository | https://github.com/sgpthomas/vcdump |
max_upload_size | |
id | 227665 |
size | 21,459 |
A simple tool to convert vcd Value Change Dump files into json files. The motivation for this is to allow vcd files to be better integrated into normal Unix command line workflows.
You can install this tool with a simple cargo install vcdump
.
vcdump
accepts a file as an argument or via stdin
.
cat test.vcd | vcdump
vcdump test.vcd
This produces a json
file on stdout
. You can then write this to a file, or use something
like jq
to explore the json file.
vcdump test.vcd | jq '.TOP.main.a0.out'