diff options
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 |