Tip: List the packages in a given apt repository by finding the `Packages` file URL and then doing this:
```bash
curl -sSL http://example.com/Packages | awk '/Package:/ { package=$2 } /Version:/ { print(package "\t" $2) }' | column -t
```
#MastodonNeedsMarkdownSupport #apt #bash #OneLiner #Tip #NoteToSelf #Linux #Debian #Ubuntu