diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 18:46:35 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-15 18:46:35 +0200 |
commit | 2affb3567dc7fb42e97da8d5bc7a6b89bdbceb8d (patch) | |
tree | 040392627a943d77b970bca0d52af762551125d2 /src/main.rs | |
parent | 36fc4e67d4b8c23d726234f34113ae518d4a12e7 (diff) |
Add docs
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 0694aa5..1859606 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,9 +8,12 @@ use nix::unistd::Pid; #[derive(Parser)] #[command(author, version, about, long_about = None)] struct Args { + /// Command to execute from ptrace command: String, } +/// Create a fork of the program and execute the process in the child. Parent gets the pid +/// value and trace it. fn main() -> anyhow::Result<()> { let args = Args::parse(); |