From 4afd089b37e8501536962928fc5f7f3859da96ae Mon Sep 17 00:00:00 2001 From: kromych Date: Wed, 18 Sep 2024 19:41:46 -0700 Subject: [PATCH] Fix and extend Readme.md - fix the command for running the sample that does not work, - mention the flag for the verbose output. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 568dc89..b8c5c0b 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,12 @@ memory dumps of running processes on Linux without external dependencies. Dumps are generated using the ELF core dump format. Documentation can be found in the corresponding rustdoc for the crate. -Included is a small sample program `elfcore-example` that creates an ELF core +Included is a small sample program `elfcore-sample` that creates an ELF core dump of a specified process. Run it with something like: ```bash -cargo run elfcore-example -- dump.core +cargo run -- dump.core ``` +Add `-v` for the more verbose logging. ## Contributing