Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samwho/ministrace
A miniature strace implementation
https://github.com/samwho/ministrace
Last synced: about 2 months ago
JSON representation
A miniature strace implementation
- Host: GitHub
- URL: https://github.com/samwho/ministrace
- Owner: samwho
- Created: 2017-04-25T22:01:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-25T22:04:17.000Z (over 7 years ago)
- Last Synced: 2024-10-13T20:42:07.197Z (3 months ago)
- Language: C
- Size: 7.81 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ministrace
Based on an initial curiosity for how strace works, an afternoon of programming
and subsequently cribbing heavily from [this blog post][1], this repo contains a
miniature strace implementation.# Building
This project uses [Bazel][2] as its build system. You'll need to install Bazel
and then run:$ bazel build :ministrace
To build the project.
# Running
$ build run :ministrace -- ls `pwd`
[1]: https://blog.nelhage.com/2010/08/write-yourself-an-strace-in-70-lines-of-code/
[2]: http://bazel.io