Skip to content

Commit

Permalink
Merge pull request #83 from fetter-io/82/mult-args
Browse files Browse the repository at this point in the history
Examples of multuple `-e` args
  • Loading branch information
flexatone authored Nov 22, 2024
2 parents 0d8e9ba + 04b5166 commit 79f8692
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]: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 [email protected]:fetter-io/bound-test.git
fetter audit display
fetter --exe python3 audit display
fetter audit
fetter -e python3 -e /usr/bin/python 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
";
Expand Down

0 comments on commit 79f8692

Please sign in to comment.