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
#!/bin/bash | |
# Downloads .deb files of a package with the dependencies | |
# | |
# Usage Example: | |
# | |
# $ chmod +x downloaddebs.sh | |
# $ ./downloaddebs.sh curl | |
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
# Examples: | |
# ======== | |
# | |
# Download the top 100 python packages, and for each package download the last 5 releases | |
# PS> Get-PythonPackages -TopPackages 100 -Last 5 | |
# | |
# Download packages listed in a file, and for each package download the last 5 releases | |
# PS> Get-PythonPackagesFromProvidedList -Path .\packages.txt -Last 5 | |
# | |
# Notes: |