diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-16 22:41:38 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-16 22:41:38 +0200 |
commit | 1d8941667906dced913a308c9a39fd055ac5186f (patch) | |
tree | b016664c7243eb67014509860385aa6182a0cd78 /src/cli.rs | |
parent | 38e07fae8b3d06cd43b4c9793c07c2048b32d095 (diff) |
Filter sys calls
Diffstat (limited to 'src/cli.rs')
-rw-r--r-- | src/cli.rs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -12,8 +12,12 @@ pub struct Args { #[arg(short = 'p', long)] pub attach: Option<i32>, + /// Show only defined sys calls. Multi values separated by comma `,` + #[arg(short = 'f', long)] + pub filter: Option<String>, + /// Write the output to a file instead of the standard output - #[arg(short = 'f', long = "file")] + #[arg(long = "file")] pub file_to_print: Option<String>, /// If defined, it hides the TUI |