Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# Downloads .deb files of a package with the dependencies
#
# Usage Example:
#
# $ chmod +x downloaddebs.sh
# $ ./downloaddebs.sh curl
# 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: