From af7a495c96c2fe3357013134e00c4aa3a9eccaa0 Mon Sep 17 00:00:00 2001 From: Christopher Ariza Date: Fri, 22 Nov 2024 13:09:33 -0800 Subject: [PATCH 1/2] updated examples --- src/cli.rs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index da8d75a..13375ad 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -46,26 +46,26 @@ const TITLE: &str = "fetter: System-wide Python package discovery and validation const AFTER_HELP: &str = "\ Examples: - fetter scan display + fetter scan fetter scan write -o /tmp/pkgscan.txt --delimiter '|' - fetter search --pattern pip* display + fetter search --pattern pip* - fetter count display + fetter count fetter --exe python3 derive -a lower write -o /tmp/bound_requirements.txt - fetter validate --bound /tmp/bound_requirements.txt display - fetter --exe python3 validate --bound /tmp/bound_requirements.txt display - fetter --exe python3 validate --superset --bound git@github.com:fetter-io/bound-test.git display + fetter validate --bound /tmp/bound_requirements.txt + fetter -e python3 validate --bound /tmp/bound_requirements.txt + fetter -e python3 validate --superset --bound git@github.com:fetter-io/bound-test.git - fetter audit display - fetter --exe python3 audit display + fetter audit + fetter -e python3 audit write -o /tmp/audit.txt -d '|' - fetter --exe python3 unpack-count display - fetter unpack-count -p pip* display + fetter -e python3 unpack-count + fetter unpack-count -p pip* - fetter --exe /usr/bin/python purge-pattern -p numpy* + fetter -e /usr/bin/python purge-pattern -p numpy* fetter purge-invalid --bound /tmp/bound_requirements.txt "; From 04b5166594edd4d65d34af7bddbd349c44215d84 Mon Sep 17 00:00:00 2001 From: Christopher Ariza Date: Fri, 22 Nov 2024 15:30:28 -0800 Subject: [PATCH 2/2] udpated examples --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 13375ad..c1c4ccd 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -60,7 +60,7 @@ Examples: fetter -e python3 validate --superset --bound git@github.com:fetter-io/bound-test.git fetter audit - fetter -e python3 audit write -o /tmp/audit.txt -d '|' + fetter -e python3 -e /usr/bin/python audit write -o /tmp/audit.txt -d '|' fetter -e python3 unpack-count fetter unpack-count -p pip*