-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from fetter-io/82/mult-args
Examples of multuple `-e` args
- Loading branch information
Showing
1 changed file
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
"; | ||
|