#!/bin/sh

# Script to list installed Debian packages, analogous to rpm -q -a

dpkg -l $1 | awk '$1 == "ii" { printf("%s-%s\n", $2, $3); }' | sort
