summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2023-10-15 18:56:55 +0200
committerSanto Cariotti <santo@dcariotti.me>2023-10-15 18:56:55 +0200
commit72664d87d2fb0782ca49a5f2118c64d0cf58e3f7 (patch)
tree44f2a3e7a39de1e0aa39ff9997fc9b67bc8eb9d6 /src/main.rs
parent2affb3567dc7fb42e97da8d5bc7a6b89bdbceb8d (diff)
Add the possibility to redirect the output to a file
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 1859606..1a93aef 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -10,6 +10,9 @@ use nix::unistd::Pid;
struct Args {
/// Command to execute from ptrace
command: String,
+ /// Write the output to a file instead of the standard output
+ #[arg(short = 'f', long = "file")]
+ file_to_print: Option<String>,
}
/// Create a fork of the program and execute the process in the child. Parent gets the pid
@@ -23,7 +26,7 @@ fn main() -> anyhow::Result<()> {
Err(err) => panic!("fork() failed: {err}"),
};
- trace(pid)?;
+ trace(pid, args.file_to_print)?;
Ok(())
}