new file mode 100644
@@ -0,0 +1,9 @@
+# Columnize `apt-cache search` results.
+alias apt-cache='__apt_cache'
+__apt_cache()
+{
+ case "$1" in
+ search) command apt-cache "$@" | sed 's/ - /\t/' | column -t -s "$(printf '\t')" ;;
+ *) command apt-cache "$@" ;;
+ esac
+}