blob: 079b5e11280a23940a499b17ad90e65ee84a9ee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# sigma
This repo refers to a "more beautiful" version of [`strace(1)`](https://www.man7.org/linux/man-pages/man1/strace.1.html) in Rust.
Trace a command
[](https://asciinema.org/a/bvkc2sTphVwm77kB4GRLY5XMQ)
Attach a PID
[](https://asciinema.org/a/LExqUuW3Y3AUvyI7V67XGrgZX)
## Install
From Crates.io
```
cargo install sigma-trace
```
or build source
```
git clone https://github.com/boozec/sigma
cd sigma
cargo build --release
```
## Help
```
Monitor Linux executables with an interface easier than strace(1)
Usage: sigma-trace [OPTIONS]
Options:
-c, --command <COMMAND> Command to execute from ptrace
-p, --attach <ATTACH> Attach the tracing to an existing process ID. We're using the `-p` short flag because strace uses it
-f, --filter <FILTER> Show only defined sys calls. Multi values separated by comma `,`
--file <FILE_TO_PRINT> Write the output to a file instead of the standard output
--no-tui If defined, it hides the TUI
-h, --help Print help
-V, --version Print version
```
|